summaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index aab12082c3..d6c18693f5 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -53,6 +53,16 @@ jobs:
steps:
- uses: actions/checkout@v2
+ - name: Override Xcode 13.0 if it's the default toolchain
+ run: |
+ XCODE_PATH="$(xcode-select -p)"
+ case "${XCODE_PATH}" in
+ *Xcode_13.0*)
+ sudo xcode-select -s "/Applications/Xcode_13.1.app"
+ echo "Updated Xcode path ${XCODE_PATH} -> $(xcode-select -p)"
+ ;;
+ esac
+
- name: Install dependencies
run: |
brew update