Skip to content

Commit

Permalink
Try testing with a bigger stack instead of recompiling a release build
Browse files Browse the repository at this point in the history
  • Loading branch information
dfellis committed Nov 20, 2024
1 parent 38696c6 commit af4a955
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
name: Run tests
run: cargo test --verbose
- name: Run native tests
run: cargo run --release -- test alan/test.ln
run: RUST_MIN_STACK=8388608 cargo run -- test alan/test.ln
- name: Run js tests
run: cargo run --release -- test --js alan/test.ln
run: RUST_MIN_STACK=8388608 cargo run -- test --js alan/test.ln

test-windows:
runs-on: [self-hosted, windows]
Expand All @@ -42,9 +42,9 @@ jobs:
name: Run tests
run: cargo test --verbose
- name: Run native tests
run: cargo run --release -- test alan/test.ln
run: RUST_MIN_STACK=8388608 cargo run -- test alan/test.ln
- name: Run js tests
run: cargo run --release -- test --js alan/test.ln
run: RUST_MIN_STACK=8388608 cargo run -- test --js alan/test.ln

test-macos:
runs-on: [self-hosted, macOS]
Expand All @@ -66,9 +66,9 @@ jobs:
name: Stop web server
run: yarn stop-server
- name: Run native tests
run: cargo run --release -- test alan/test.ln
run: RUST_MIN_STACK=8388608 cargo run -- test alan/test.ln
- name: Run js tests
run: cargo run --release -- test --js alan/test.ln
run: RUST_MIN_STACK=8388608 cargo run -- test --js alan/test.ln

test-arm-linux:
runs-on: [self-hosted, linux, ARM64]
Expand All @@ -83,6 +83,6 @@ jobs:
name: Run tests
run: RUST_MIN_STACK=8388608 cargo test --verbose
- name: Run native tests
run: cargo run --release -- test alan/test.ln
run: RUST_MIN_STACK=8388608 cargo run -- test alan/test.ln
- name: Run js tests
run: cargo run --release -- test --js alan/test.ln
run: RUST_MIN_STACK=8388608 cargo run -- test --js alan/test.ln

0 comments on commit af4a955

Please sign in to comment.