Skip to content

Commit

Permalink
Run experiment 3
Browse files Browse the repository at this point in the history
This varies:

- `ubuntu-22.04-arm` vs. `ubuntu-24.04.arm` GHA runner.
- Installing Rust via the `rust-toolchain` action vs. with curl.sh.
- Installing the stable vs. beta Rust toolchain.
- Installing nextest via `install-action` quickinstall/binstall.

*If* this also confirms that the only fully consistent factor in
whether errors happen is `ubuntu-22.04-arm` vs. `ubuntu-24.04.arm`,
then that will make it clearer that the problem is likely specific
to the `ubuntu-24.04.arm` runner.

See GitoxideLabs#1790 and rust-lang/rust#135867 for context.
  • Loading branch information
EliahKagan committed Jan 23, 2025
1 parent 3beb112 commit a0e923b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/arm-segv-experiment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
test-fast:
strategy:
matrix:
num-high: [ 0 ] # [ 0, 1, 2 ]
num-high: [ 0, 1, 2, 3 ]
os-ver: [ '22.04', '24.04' ]
channel: [ stable, beta, nightly ]
channel: [ stable, beta ] # `gix-macros::macros momo::ux` currently fails on `nightly`.
get-rust-by: [ rt-action, curl-sh ]
get-nextest-by: [ i-action, cargo-qi ]
num-low: [ 0 ] # [ 0, 1, 2 ]
num-low: [ 0, 1, 2, 3 ]

fail-fast: false

Expand Down

0 comments on commit a0e923b

Please sign in to comment.