Skip to content

Commit fef9ca5

Browse files
committed
GHA: Exclude 32-bit core.thread-shared unittests for Linux multilib job; newly hangs rather frequently on Ubuntu 22
1 parent 861cc0e commit fef9ca5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/actions/4d-test-libs/action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ runs:
1919
fi
2020
2121
excludes="dmd-testsuite|lit-tests|ldc2-unittest"
22-
if [[ '${{ runner.os }}-${{ inputs.arch }}' == Linux-aarch64 ]]; then
22+
if [[ '${{ runner.os }}-${{ inputs.arch }}' == Linux-x86_64 ]]; then
23+
# sporadically hanging since Ubuntu 22
24+
excludes+='|^core.thread-shared_32$'
25+
elif [[ '${{ runner.os }}-${{ inputs.arch }}' == Linux-aarch64 ]]; then
2326
# FIXME: failing unittest(s)
2427
excludes+='|^std.internal.math.gammafunction'
2528
# FIXME: failing unittest(s) with enabled optimizations

0 commit comments

Comments
 (0)