Skip to content

Commit 1f3f6b5

Browse files
committed
Do the real rustc SIGSEGV test
This makes two changes, with the intent of producing a usable test: - Removes `nightly`, since a test is currently failing on it. It can be tested later in case it fixes the SIGSEGV bug, if other changes don't help. - Have `number` take on 16 values instead of just one. This is to make it possible to figure something out about how often the failure happens with the other variables and whether the other variables make a difference. This is needed because the failures are nondeterministic, may not even usually happen, or may happen less often but still happen for some combination of the other variables. (See GitoxideLabs#1790 for context.)
1 parent 122d4d9 commit 1f3f6b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
strategy:
88
matrix:
99
os-ver: [ '22.04', '24.04' ]
10-
channel: [ stable, beta, nightly ]
10+
channel: [ stable, beta ] # `gix-macros::macros momo::ux` currently fails on `nightly`.
1111
increase-stack: [ false, true ]
12-
number: [ 0 ] # FIXME: Increase, so results are meaningful.
12+
number: [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' ]
1313

1414
fail-fast: false
1515

0 commit comments

Comments
 (0)