We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 388044d commit 1311357Copy full SHA for 1311357
.github/workflows/meson_ci.yml
@@ -76,7 +76,15 @@ jobs:
76
with:
77
python-version: '3.12'
78
79
- - name: Install Xcode
+ - name: Install Xcode Command Line Tools
80
+ run: |
81
+ if ! xcode-select -p &>/dev/null; then
82
+ sudo xcode-select --install
83
+ # Wait until installation finishes
84
+ until xcode-select -p &>/dev/null; do sleep 5; done
85
+ fi
86
+
87
+ - name: Select Xcode version
88
run: sudo xcode-select --switch /Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer
89
90
- name: Install Meson and Ninja
0 commit comments