Skip to content

Commit e5198c2

Browse files
committed
disable 16.0 and 16.1
1 parent 9a15308 commit e5198c2

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/pull_request.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ jobs:
1111
with:
1212
linux_os_versions: '["jammy", "focal"]'
1313
enable_macos_checks: true
14+
# FIXME: https://github.com/swiftlang/github-workflows/pull/140
15+
# Xcode 16.0 and 16.1 are not actually available
16+
macos_exclude_xcode_versions: |
17+
[
18+
{"xcode_version": "16.0"},
19+
{"xcode_version": "16.1"},
20+
]
1421
swift_flags: "-Xbuild-tools-swiftc -DSYSTEM_CI"
1522

1623
build-abi-stable:
@@ -22,12 +29,12 @@ jobs:
2229
enable_windows_checks: false
2330
# Only build
2431
macos_build_command: "xcrun swift build --build-tests"
25-
# Only test against latest Xcode
32+
# FIXME: https://github.com/swiftlang/github-workflows/pull/140
33+
# Xcode 16.0 and 16.1 are not actually available
2634
macos_exclude_xcode_versions: |
2735
[
2836
{"xcode_version": "16.0"},
2937
{"xcode_version": "16.1"},
30-
{"xcode_version": "16.2"},
3138
]
3239
# Enable availability to match ABI stable verion of system.
3340
swift_flags: "-Xbuild-tools-swiftc -DSYSTEM_CI -Xbuild-tools-swiftc -DSYSTEM_ABI_STABLE"

0 commit comments

Comments
 (0)