Skip to content

Commit 264ea06

Browse files
authored
Merge pull request #110 from swiftlang/shahmishal/swift-6.1-support
Update Swift Package CI to include Swift 6.1 on Linux and Windows
2 parents bf15853 + 4d13156 commit 264ea06

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
##===----------------------------------------------------------------------===##
2+
##
3+
## This source file is part of the Swift.org open source project
4+
##
5+
## Copyright (c) 2025 Apple Inc. and the Swift project authors
6+
## Licensed under Apache License v2.0 with Runtime Library Exception
7+
##
8+
## See https://swift.org/LICENSE.txt for license information
9+
## See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10+
##
11+
##===----------------------------------------------------------------------===##
12+
. $PSScriptRoot\install-swift.ps1
13+
14+
$SWIFT='https://download.swift.org/swift-6.1-release/windows10/swift-6.1-RELEASE/swift-6.1-RELEASE-windows10.exe'
15+
$SWIFT_SHA256='8C8AEF8B4A449EBEEFD74482AC767E269F8CBE7E520871C1D103C7079C5F4C6A'
16+
17+
Install-Swift -Url $SWIFT -Sha256 $SWIFT_SHA256

.github/workflows/swift_package_test.yml

Lines changed: 2 additions & 2 deletions
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.9', '5.10', '6.0', 'nightly-main', 'nightly-6.1']
76+
swift_version: ['5.9', '5.10', '6.0', '6.1', 'nightly-main', 'nightly-6.1']
7777
os_version: ${{ fromJson(inputs.linux_os_versions) }}
7878
exclude:
7979
- ${{ fromJson(inputs.linux_exclude_swift_versions) }}
@@ -107,7 +107,7 @@ jobs:
107107
strategy:
108108
fail-fast: false
109109
matrix:
110-
swift_version: ['5.9', '6.0', 'nightly', 'nightly-6.1']
110+
swift_version: ['5.9', '6.0', '6.1', 'nightly', 'nightly-6.1']
111111
exclude:
112112
- ${{ fromJson(inputs.windows_exclude_swift_versions) }}
113113
steps:

0 commit comments

Comments
 (0)