Skip to content

Commit 0c8dfb5

Browse files
committed
fix: Correct GitHub Actions workflow test paths
Run tests from workspace root instead of node subdir
1 parent 1147d61 commit 0c8dfb5

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/multi-arch-determinism.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ jobs:
3131

3232
- name: Run determinism test
3333
run: |
34-
cd node
35-
cargo test --release determinism_x86 -- --nocapture --test-threads=1 > ../x86_output.txt 2>&1 || true
34+
cargo test -p valori-node --test multi_arch_determinism --release determinism_x86 -- --nocapture --test-threads=1 > x86_output.txt 2>&1 || true
3635
3736
- name: Extract hash
3837
run: |
@@ -68,8 +67,7 @@ jobs:
6867

6968
- name: Run determinism test
7069
run: |
71-
cd node
72-
cargo test --release determinism_arm -- --nocapture --test-threads=1 > ../arm_output.txt 2>&1 || true
70+
cargo test -p valori-node --test multi_arch_determinism --release determinism_arm -- --nocapture --test-threads=1 > arm_output.txt 2>&1 || true
7371
7472
- name: Extract hash
7573
run: |
@@ -116,8 +114,7 @@ jobs:
116114
117115
- name: Run WASM determinism test
118116
run: |
119-
cd node
120-
cargo test --release determinism_wasm -- --nocapture --test-threads=1 > ../wasm_output.txt 2>&1 || true
117+
cargo test -p valori-node --test multi_arch_determinism --release determinism_wasm -- --nocapture --test-threads=1 > wasm_output.txt 2>&1 || true
121118
122119
- name: Extract hash
123120
run: |

0 commit comments

Comments
 (0)