From 2662cd55634fc8e084cb632ce80050547fc63df1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Pi=C3=B1era?= Date: Mon, 26 Jun 2023 20:33:47 +0200 Subject: [PATCH] Fix pipeline --- .github/workflows/xcodeproj.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/xcodeproj.yml b/.github/workflows/xcodeproj.yml index 2a902404f..2c4a104f5 100644 --- a/.github/workflows/xcodeproj.yml +++ b/.github/workflows/xcodeproj.yml @@ -9,14 +9,14 @@ concurrency: jobs: build: - name: Build (macOS / Xcode ${{ matrix.xcode }}) + name: Build (macOS) runs-on: macos-latest strategy: matrix: - xcode: ["14.3.1", "15.0"] + xcode: ["14.3.1"] steps: - uses: actions/checkout@v1 - - name: Select Xcode ${{ matrix.xcode }} + - name: Sele run: sudo xcode-select -switch /Applications/Xcode_${{ matrix.xcode }}.app - name: Build run: swift build -c release @@ -28,11 +28,11 @@ jobs: - name: Build run: swift build -c release test: - name: Test (macOS / Xcode ${{ matrix.xcode }}) + name: Test (macOS / Xcode) runs-on: macos-11 strategy: matrix: - xcode: ["14.3.1", "15.0"] + xcode: ["14.3.1"] steps: - uses: actions/checkout@v1 - name: Select Xcode ${{ matrix.xcode }}