From addf436e5e645b9371cc3addc170a46a75a22e37 Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Tue, 30 Jan 2024 19:00:03 +0000 Subject: [PATCH 1/2] Try removing the 'xcode-select' call from the macOS PR build pipeline --- .github/workflows/pull-requests.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index 78543078..cca2260a 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -10,9 +10,7 @@ jobs: runs-on: macos-13 steps: - - name: xCode - run: sudo xcode-select -s /Applications/Xcode_14.3.app/Contents/Developer/ - + - uses: actions/checkout@v2 - name: Setup .NET From d48f914689c1f0f827e8583ddf9f50f47414d0b4 Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Tue, 30 Jan 2024 19:09:42 +0000 Subject: [PATCH 2/2] Ok, lets try setting it to 15.1 instead --- .github/workflows/pull-requests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index cca2260a..95a7a2bd 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -10,7 +10,9 @@ jobs: runs-on: macos-13 steps: - + - name: xCode + run: sudo xcode-select -s /Applications/Xcode_15.1.app/Contents/Developer/ + - uses: actions/checkout@v2 - name: Setup .NET