We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e0e8da commit 002af19Copy full SHA for 002af19
1 file changed
.github/workflows/ci-windows.yml
@@ -184,11 +184,11 @@ jobs:
184
echo "Has clang-cl: $([ -f "$LLVM_ROOT/bin/clang-cl.exe" ] && echo YES || echo NO)"
185
echo "Has lld-link: $([ -f "$LLVM_ROOT/bin/lld-link.exe" ] && echo YES || echo NO)"
186
187
- - name: Install xmake
188
- shell: pwsh
+ - name: Install xmake via xlings
+ shell: bash
189
run: |
190
- Invoke-Expression (Invoke-WebRequest 'https://xmake.io/psget.text' -UseBasicParsing).Content
191
- xmake --version
+ xlings.exe install xmake -y || xlings install xmake -y
+ xmake.exe --version || xmake --version
192
193
- name: Build mcpp with xmake (MSVC)
194
shell: pwsh
0 commit comments