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:
52
52
with :
53
53
name : linux-installable
54
54
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
62
62
63
63
macos_build :
64
64
timeout-minutes : 0
Original file line number Diff line number Diff line change @@ -29,11 +29,13 @@ if [[ "$(uname)" == "Darwin" ]]; then
29
29
mkdir -p $BUILD_DIR /swift-macosx-x86_64/test-macosx-x86_64
30
30
fi
31
31
32
- $RUN_TEST_BIN --build-dir $BUILD_DIR --target wasi-wasm32 test/stdlib/
33
-
34
32
if [[ " $( uname) " == " Linux" ]]; then
33
+ $RUN_TEST_BIN --build-dir $BUILD_DIR --target wasi-wasm32 test/stdlib/ || true
35
34
echo " Skip running test suites for Linux"
36
35
else
36
+
37
+ $RUN_TEST_BIN --build-dir $BUILD_DIR --target wasi-wasm32 test/stdlib/
38
+
37
39
# Run test but ignore failure temporarily
38
40
$BUILD_SCRIPT -t || true
39
41
fi
You can’t perform that action at this time.
0 commit comments