Skip to content

Commit 2ae9a35

Browse files
committed
Redo experiment 2 with current beta
As noted in the preceding commit, when I ran experiments 1 and 2 the first time, I accidentally used `dtolnay/rust-toolchain@stable` instead of `dtolnay/rust-toolchain@master`, even though the latter is needed to use current values of the `toolchain` key rather than the builds they referred to at the time the most recent stable build was updated. The preceding commit redid experiment 1 with that fixed. This commit redoes experiment 2 with te same fix. See 5a71963 (1b3e2cd), #1790, and rust-lang/rust#135867 for context.
1 parent 397da6b commit 2ae9a35

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/arm-segv-experiment.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
66
test-fast:
77
strategy:
88
matrix:
9+
num-high: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
910
os-ver: [ '22.04', '24.04' ]
10-
channel: [ stable, beta ] # `gix-macros::macros momo::ux` currently fails on `nightly`.
11-
increase-stack: [ false, true ]
12-
number: [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' ]
11+
channel: [ stable, beta ]
12+
num-low: [ 0, 1, 2, 3, 4, 5, 6, 7 ]
1313

1414
fail-fast: false
1515

@@ -24,9 +24,9 @@ jobs:
2424
- uses: taiki-e/install-action@v2
2525
with:
2626
tool: nextest
27-
- name: Set RUST_MIN_STACK
28-
if: matrix.increase-stack
29-
run: echo RUST_MIN_STACK=16777216 >>"$GITHUB_ENV"
27+
# - name: Set RUST_MIN_STACK
28+
# if: matrix.increase-stack
29+
# run: echo RUST_MIN_STACK=16777216 >>"$GITHUB_ENV"
3030
- name: Test (nextest)
3131
env:
3232
GIX_TEST_CREATE_ARCHIVES_EVEN_ON_CI: '1'

0 commit comments

Comments
 (0)