Skip to content

Commit 40304a1

Browse files
authored
Add CI for Swift 5.7.1 (#2701)
* Add CI for Swift 5.7.1 * wip
1 parent ac2e7ac commit 40304a1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,21 @@ jobs:
3939
- name: Build for library evolution
4040
run: make build-for-library-evolution
4141

42+
library-compatibility:
43+
name: Library (Swift 5.7.1)
44+
runs-on: macos-12
45+
strategy:
46+
matrix:
47+
config:
48+
- debug
49+
- release
50+
steps:
51+
- uses: actions/checkout@v4
52+
- name: Select Xcode 14.1
53+
run: sudo xcode-select -s /Applications/Xcode_14.1.app
54+
- name: Build ${{ matrix.config }}
55+
run: swift build -c ${{ matrix.config }}
56+
4257
benchmarks:
4358
name: Benchmarks
4459
runs-on: macos-13

0 commit comments

Comments
 (0)