|
5 | 5 | types: [opened, reopened, synchronize]
|
6 | 6 |
|
7 | 7 | jobs:
|
8 |
| - tests: |
9 |
| - name: Test |
| 8 | + tests_5_9: |
| 9 | + name: Test 5.9-compatible Linux distributions |
10 | 10 | uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
|
11 | 11 | with:
|
12 |
| - linux_os_versions: '["amazonlinux2", "bookworm", "noble", "jammy", "focal", "rhel-ubi9"]' |
| 12 | + linux_os_versions: '["amazonlinux2", "jammy", "focal", "rhel-ubi9"]' |
13 | 13 | linux_swift_versions: '["5.9", "5.10", "6.0", "6.1", "nightly-6.2", "nightly-main"]'
|
14 | 14 | linux_pre_build_command: |
|
15 | 15 | if command -v apt-get >/dev/null 2>&1 ; then # bookworm, noble, jammy, focal
|
|
20 | 20 | yum install -y sqlite-devel
|
21 | 21 | fi
|
22 | 22 | enable_windows_checks: false
|
| 23 | + |
| 24 | + tests_6_0: |
| 25 | + name: Test 6.0-compatible Linux distributions |
| 26 | + uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main |
| 27 | + with: |
| 28 | + linux_os_versions: '["bookworm", "noble"]' |
| 29 | + linux_swift_versions: '["6.0", "6.1", "nightly-6.2", "nightly-main"]' |
| 30 | + linux_pre_build_command: | |
| 31 | + if command -v apt-get >/dev/null 2>&1 ; then # bookworm, noble, jammy, focal |
| 32 | + apt-get update -y |
| 33 | + apt-get install -y locales locales-all libsqlite3-dev |
| 34 | + elif command -v yum >/dev/null 2>&1 ; then # amazonlinux2 |
| 35 | + yum update -y |
| 36 | + yum install -y sqlite-devel |
| 37 | + fi |
| 38 | + enable_windows_checks: false |
23 | 39 | soundness:
|
24 | 40 | name: Soundness
|
25 | 41 | uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
|
|
0 commit comments