Skip to content

Commit 45050ab

Browse files
committed
try running swift 5.4 tests without test discovery to see if that fixes crasher in build.
1 parent 97309ba commit 45050ab

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/tests.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,18 @@ jobs:
2525
- swift:5.3-focal
2626
- swift:5.3-centos8
2727
- swift:5.3-amazonlinux2
28+
container: ${{ matrix.image }}
29+
steps:
30+
- name: Checkout code
31+
uses: actions/checkout@v2
32+
- name: Run tests
33+
run: swift test --enable-test-discovery
34+
linux-5_4-plus:
35+
runs-on: ubuntu-latest
36+
strategy:
37+
fail-fast: false
38+
matrix:
39+
image:
2840
- swift:5.4-xenial
2941
- swift:5.4-bionic
3042
- swift:5.4-focal
@@ -34,8 +46,8 @@ jobs:
3446
steps:
3547
- name: Checkout code
3648
uses: actions/checkout@v2
37-
- name: Run tests
38-
run: swift test --enable-test-discovery
49+
- name: Run tests (without test discovery flag)
50+
run: swift test
3951
osx:
4052
runs-on: macOS-latest
4153
steps:

0 commit comments

Comments
 (0)