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 88a92ce commit c5cc0a7Copy full SHA for c5cc0a7
.github/workflows/android.yml
@@ -83,11 +83,14 @@ jobs:
83
run: |
84
build_scripts/android/install_prereqs.sh
85
86
- - name: Add strings.exe to PATH
+ - name: Add strings.exe to PATH (Windows only)
87
if: startsWith(matrix.os, 'windows')
88
shell: bash
89
90
- # strings.exe was installed in repo root by install_prereqs
+ # strings.exe was installed in repo root by install_prereqs.sh.
91
+ # There is another conflicting strings executable on Github runners.
92
+ # "C:\ProgramData\Chocolatey\lib\mingw\tools\install\mingw64\bin\strings.exe"
93
+ # Make sure to prepend the one in our repo root to the path.
94
echo "${{ github.workspace }}" >> $GITHUB_PATH
95
96
- name: Cache ccache files
0 commit comments