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 c268554 commit e7471a6Copy full SHA for e7471a6
.github/workflows/ci.yml
@@ -44,14 +44,18 @@ jobs:
44
cd ${{ github.workspace }}/vcpkg
45
git checkout master
46
47
- - name: Bootstrap vcpkg
+ - name: Bootstrap vcpkg (Windows)
48
+ if: runner.os == 'Windows'
49
run: |
- if [ "$RUNNER_OS" == "Windows" ]; then
50
- ${{ github.workspace }}/vcpkg/bootstrap-vcpkg.bat
51
- else
52
- ${{ github.workspace }}/vcpkg/bootstrap-vcpkg.sh
53
- fi
54
- shell: bash
+ cd ${{ github.workspace }}/vcpkg
+ .\bootstrap-vcpkg.bat
+ shell: pwsh
+
+ - name: Bootstrap vcpkg (Linux/macOS)
55
+ if: runner.os != 'Windows'
56
+ run: |
57
58
+ ./bootstrap-vcpkg.sh
59
60
- name: Install vcpkg dependencies
61
0 commit comments