Skip to content

Commit 80eecca

Browse files
committed
Avoid running tests on RHEL UBI9 with a github issue link
1 parent a1c8e28 commit 80eecca

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pull_request.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
- name: Prepare the action
3838
run: ./scripts/prep-gh-action.sh --install-swiftly
3939
- name: Build and Test
40-
run: bash -c 'if [[ "${{ matrix.container }}" == "redhat/ubi9" || "${{ matrix.container }}" == "ubuntu:20.04" ]]; then swift test --skip HTTPClientTests --no-parallel; else swift test; fi'
40+
# UBI 9 and Ubuntu 20.04 - See https://github.com/swiftlang/swift/issues/80908
41+
# UBI 9 - See https://github.com/swiftlang/swift/issues/80909
42+
run: bash -c 'if [[ "${{ matrix.container }}" == "redhat/ubi9" ]]; then swift build --build-tests; elif [[ "${{ matrix.container }}" == "ubuntu:20.04" ]]; then swift test --skip HTTPClientTests; else swift test; fi'
4143

4244
releasebuildcheck:
4345
name: Release Build Check

0 commit comments

Comments
 (0)