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 86cfdd7 commit a9ad95cCopy full SHA for a9ad95c
.github/workflows/android.yml
@@ -13,6 +13,7 @@ on:
13
env:
14
CCACHE_DIR: ${{ github.workspace }}/ccache_dir
15
GITHUB_TOKEN: ${{ github.token }}
16
+ xcodeVersion: "12.4" # Only affects Mac runners, and only for prerequisites.
17
18
jobs:
19
prepare_matrix:
@@ -46,6 +47,10 @@ jobs:
46
47
architecture: ${{ fromJson(needs.prepare_matrix.outputs.matrix_architecture) }}
48
python_version: ${{ fromJson(needs.prepare_matrix.outputs.matrix_python_version) }}
49
steps:
50
+ - name: setup Xcode version (macos)
51
+ if: runner.os == 'macOS'
52
+ run: sudo xcode-select -s /Applications/Xcode_${{ env.xcodeVersion }}.app/Contents/Developer
53
+
54
- name: Store git credentials for all git commands
55
# Forces all git commands to use authenticated https, to prevent throttling.
56
shell: bash
0 commit comments