From 572bdfc9ed731e5bd098c3815cbb2b35b67ba97f Mon Sep 17 00:00:00 2001 From: Christopher Serr Date: Wed, 17 Mar 2021 14:53:35 +0100 Subject: [PATCH] Try without xcode-select Supposedly the XCode version installed in GitHub Actions is 12.4, so xcode-select actually downgrades us to 12.3, which doesn't seem necessary. --- .github/workflows/rust.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1de57febd..54f432963 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -614,13 +614,6 @@ jobs: run: sh .github/workflows/install.sh env: OS_NAME: ${{ matrix.os }} - TARGET: ${{ matrix.target }} - - - name: Select XCode to use - if: matrix.target == 'aarch64-apple-darwin' - run: | - sudo xcode-select -s "/Applications/Xcode_12.3.app" - sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/* - name: Build Static Library run: sh .github/workflows/build_static.sh