From 40304a1670bf3442df15e52be6f80509e95eaca2 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Mon, 8 Jan 2024 12:34:42 -0800 Subject: [PATCH] Add CI for Swift 5.7.1 (#2701) * Add CI for Swift 5.7.1 * wip --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75ea9e16305e..5602d2b79ee8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,21 @@ jobs: - name: Build for library evolution run: make build-for-library-evolution + library-compatibility: + name: Library (Swift 5.7.1) + runs-on: macos-12 + strategy: + matrix: + config: + - debug + - release + steps: + - uses: actions/checkout@v4 + - name: Select Xcode 14.1 + run: sudo xcode-select -s /Applications/Xcode_14.1.app + - name: Build ${{ matrix.config }} + run: swift build -c ${{ matrix.config }} + benchmarks: name: Benchmarks runs-on: macos-13