File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 2525 help = 'If enabled, only fetches the waterfall build. Default: false.' )
2626parser .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 .' ))
3131parser .add_argument (
3232 '--no-test-waterfall' , dest = 'test_waterfall' , action = 'store_false' ,
3333 help = 'Disables downloading and testing of the LLVM waterfall builds.' )
You can’t perform that action at this time.
0 commit comments