File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed
Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -52,13 +52,13 @@ jobs:
5252 with :
5353 name : linux-installable
5454 path : ../swift-wasm-DEVELOPMENT-SNAPSHOT-linux.tar.gz
55- - name : Pack test results
56- run : tar cJf swift-test-results.tar.gz ../build/*/swift-linux-x86_64/swift-test-results
57- - name : Upload test results
58- uses : actions/upload-artifact@v1
59- with :
60- name : linux-test-results
61- path : ./swift-test-results.tar.gz
55+ # - name: Pack test results
56+ # run: tar cJf swift-test-results.tar.gz ../build/*/swift-linux-x86_64/swift-test-results
57+ # - name: Upload test results
58+ # uses: actions/upload-artifact@v1
59+ # with:
60+ # name: linux-test-results
61+ # path: ./swift-test-results.tar.gz
6262
6363 macos_build :
6464 timeout-minutes : 0
Original file line number Diff line number Diff line change @@ -29,11 +29,13 @@ if [[ "$(uname)" == "Darwin" ]]; then
2929 mkdir -p $BUILD_DIR /swift-macosx-x86_64/test-macosx-x86_64
3030fi
3131
32- $RUN_TEST_BIN --build-dir $BUILD_DIR --target wasi-wasm32 test/stdlib/
33-
3432if [[ " $( uname) " == " Linux" ]]; then
33+ $RUN_TEST_BIN --build-dir $BUILD_DIR --target wasi-wasm32 test/stdlib/ || true
3534 echo " Skip running test suites for Linux"
3635else
36+
37+ $RUN_TEST_BIN --build-dir $BUILD_DIR --target wasi-wasm32 test/stdlib/
38+
3739 # Run test but ignore failure temporarily
3840 $BUILD_SCRIPT -t || true
3941fi
You can’t perform that action at this time.
0 commit comments