Skip to content

Commit a557761

Browse files
authored
Merge pull request #6 from swhitty/swift-6.2
xcode 26 / swift 6.2
2 parents 42880ab + cb45484 commit a557761

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
token: ${{ secrets.CODECOV_TOKEN }}
2828
files: ./coverage_report.lcov
2929

30-
xcode_16_2:
30+
xcode_26:
3131
runs-on: macos-15
3232
env:
33-
DEVELOPER_DIR: /Applications/Xcode_16.2.app/Contents/Developer
33+
DEVELOPER_DIR: /Applications/Xcode_26.0.app/Contents/Developer
3434
steps:
3535
- name: Checkout
3636
uses: actions/checkout@v4
@@ -41,10 +41,10 @@ jobs:
4141
- name: Test
4242
run: swift test --skip-build
4343

44-
xcode_15_4:
45-
runs-on: macos-14
44+
xcode_16_2:
45+
runs-on: macos-15
4646
env:
47-
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer
47+
DEVELOPER_DIR: /Applications/Xcode_16.2.app/Contents/Developer
4848
steps:
4949
- name: Checkout
5050
uses: actions/checkout@v4
@@ -53,12 +53,12 @@ jobs:
5353
- name: Build
5454
run: swift build --build-tests
5555
- name: Test
56-
run: swift test
56+
run: swift test --skip-build
5757

58-
xcode_15_2:
58+
xcode_15_4:
5959
runs-on: macos-14
6060
env:
61-
DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer
61+
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer
6262
steps:
6363
- name: Checkout
6464
uses: actions/checkout@v4
@@ -108,9 +108,9 @@ jobs:
108108
- name: Test
109109
run: swift test --skip-build
110110

111-
linux_swift_5_9:
111+
linux_swift_6_2:
112112
runs-on: ubuntu-latest
113-
container: swift:5.9
113+
container: swiftlang/swift:nightly-6.2-noble
114114
steps:
115115
- name: Checkout
116116
uses: actions/checkout@v4
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.9
1+
// swift-tools-version:5.10
22

33
import PackageDescription
44

docker-run-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ set -eu
55
docker run -it \
66
--rm \
77
--mount src="$(pwd)",target=/mutex,type=bind \
8-
swiftlang/swift:nightly-6.0-jammy \
8+
swiftlang/swift:nightly-6.2-noble \
99
/usr/bin/swift test --package-path /mutex

0 commit comments

Comments
 (0)