File tree Expand file tree Collapse file tree
actions/prepare-for-tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 path : ~/
1919
2020 - name : Extract persistent directories
21- run : tar -xzf ~/emscripten-cache.tar.gz -C ~/
21+ run : |
22+ tar -xzvf ~/emscripten-cache.tar.gz -C ~/
23+ ls -l ~/
24+ ls -l ~/cache || echo "no ~/cache dir"
2225 shell : bash
2326
2427 - name : Set EM_CONFIG
Original file line number Diff line number Diff line change @@ -95,18 +95,14 @@ jobs:
9595 - name : Build Hello world
9696 run : |
9797 ./emcc --clear-cache
98- ./test/runner test_hello_world
98+ ./test/runner test_hello_world core3.test_hello_world
9999
100- - name : embuilder build ALL
101- run : |
102- ./embuilder build ALL
103- ./test/runner test_hello_world
104100
105101 - name : Clean build directory
106102 run : rm -rf ~/cache/build
107103
108104 - name : Archive persistent directories
109- run : tar -czf ~/emscripten-cache.tar.gz -C ~/ .jsvu cache vms wasi-sdk
105+ run : tar -czvf ~/emscripten-cache.tar.gz -C ~/ .jsvu cache vms wasi-sdk
110106
111107 - name : Persist workspace
112108 uses : actions/upload-artifact@v7.0.1
@@ -434,6 +430,7 @@ jobs:
434430 EMTEST_SKIP_NEW_CMAKE : " 1"
435431 EMTEST_SKIP_WASM64 : " 1"
436432 EMTEST_SKIP_WASM_LEGACY_EH : " 1"
433+ EMTEST_SKIP_WASM_EH : " 1"
437434
438435 test-deno :
439436 runs-on : emscripten-premerge-linux-runners
@@ -475,7 +472,9 @@ jobs:
475472 env :
476473 EMTEST_SKIP_NEW_CMAKE : " 1"
477474 EMTEST_SKIP_WASM64 : " 1"
475+ # TODO: we can prbably run legacy EH
478476 EMTEST_SKIP_WASM_LEGACY_EH : " 1"
477+ EMTEST_SKIP_WASM_EH : " 1"
479478
480479 test-jsc :
481480 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments