Skip to content

Commit 97fcfd6

Browse files
committed
skip more EH, debug cache restore
1 parent 0819f2a commit 97fcfd6

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/actions/prepare-for-tests/action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ runs:
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

.github/workflows/build-and-test-linux.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)