Skip to content

Commit

Permalink
Add job to CI, covering Library Evolution Makefile target
Browse files Browse the repository at this point in the history
  • Loading branch information
gemmakbarlow committed Sep 24, 2024
1 parent 5c48d67 commit eb42355
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
macos:
name: macOS (Xcode ${{ matrix.xcode }})
runs-on: macos-14
runs-on: macos-latest
strategy:
matrix:
xcode:
Expand All @@ -31,6 +31,23 @@ jobs:
- name: Run tests
run: make test-swift

macos-library-evolution:
name: macOS Library Evolution (Xcode ${{ matrix.xcode }})
runs-on: macos-latest
strategy:
matrix:
xcode:
- '15.4'
- '16.0'
steps:
- uses: actions/checkout@v4
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Print Swift version
run: swift --version
- name: Build for Library Evolution
run: make build-for-library-evolution

linux:
strategy:
matrix:
Expand Down

0 comments on commit eb42355

Please sign in to comment.