Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e71b0cf

Browse files
committedJan 22, 2025
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.
1 parent d9e7fdb commit e71b0cf

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)
Please sign in to comment.