Skip to content

Commit bf15853

Browse files
authored
Merge pull request #107 from swiftlang/drop-5.8
Drop support for Swift 5.8 from Linux workflows
2 parents ef1fb2e + 216ebee commit bf15853

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/swift_package_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
strategy:
7474
fail-fast: false
7575
matrix:
76-
swift_version: ['5.8', '5.9', '5.10', '6.0', 'nightly-main', 'nightly-6.1']
76+
swift_version: ['5.9', '5.10', '6.0', 'nightly-main', 'nightly-6.1']
7777
os_version: ${{ fromJson(inputs.linux_os_versions) }}
7878
exclude:
7979
- ${{ fromJson(inputs.linux_exclude_swift_versions) }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ jobs:
4040
4141
### Testing
4242
43-
To enable pull request testing for all supported Swift versions (5.8, 5.9, 5.10,
44-
6.0, and nightly) on Linux and Windows, add the following code example in
43+
To enable pull request testing for all supported Swift versions (5.9, 5.10,
44+
6.0, nightly, and nightly-6.1) on Linux and Windows, add the following code example in
4545
`.github/workflows/pull_request.yml`:
4646

4747
```yaml
@@ -61,7 +61,7 @@ If your package only supports newer compiler versions, you can exclude older
6161
versions by using the `*_exclude_swift_versions` workflow input:
6262

6363
```yaml
64-
linux_exclude_swift_versions: "[{\"swift_version\": \"5.8\"}, {\"swift_version\": \"5.9\"}]"
64+
linux_exclude_swift_versions: "[{\"swift_version\": \"5.9\"}]"
6565
windows_exclude_swift_versions: "[{\"swift_version\": \"5.9\"}]"
6666
```
6767

0 commit comments

Comments
 (0)