Skip to content

Commit 34eec46

Browse files
authored
default waterfall testing to off (#1186)
1 parent 9f4e328 commit 34eec46

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
before_script:
2424
# Check the style of a subset of Python code until the other code is updated.
2525
- flake8 ./scripts/
26-
- ./check.py --only-prepare
26+
- ./check.py --test-waterfall --only-prepare
2727
script:
2828
- cmake . -DCMAKE_C_FLAGS="$COMPILER_FLAGS" -DCMAKE_CXX_FLAGS="$COMPILER_FLAGS"
2929
- make -j2
30-
- ./check.py
30+
- ./check.py --test-waterfall
3131
env: |
3232
CC_COMPILER="./test/wasm-install/wasm-install/bin/clang"
3333
CXX_COMPILER="./test/wasm-install/wasm-install/bin/clang++"
@@ -74,11 +74,11 @@ jobs:
7474
install:
7575
- sudo sh alpine-chroot-install -a "$ARCH" -p 'build-base cmake git nodejs python2'
7676
before_script:
77-
- alpine ./check.py --only-prepare
77+
- alpine ./check.py --test-waterfall --only-prepare
7878
script:
7979
- alpine cmake .
8080
- alpine make -j2
81-
- alpine ./check.py
81+
- alpine ./check.py --test-waterfall
8282

8383

8484
# Build statically linked release binaries with gcc 6.3 on Alpine Linux

scripts/test/shared.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
help='If enabled, only fetches the waterfall build. Default: false.')
2626
parser.add_argument(
2727
'--test-waterfall', dest='test_waterfall', action='store_true',
28-
default=True,
28+
default=False,
2929
help=('If enabled, fetches and tests the LLVM waterfall builds.'
30-
' Default: true.'))
30+
' Default: false.'))
3131
parser.add_argument(
3232
'--no-test-waterfall', dest='test_waterfall', action='store_false',
3333
help='Disables downloading and testing of the LLVM waterfall builds.')

0 commit comments

Comments
 (0)