We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b3d287 commit d64341cCopy full SHA for d64341c
.github/workflows/build-test-windows.yml
@@ -73,11 +73,18 @@ jobs:
73
cxx_compiler: ${{ matrix.runner }} # runner name will be transformed to MSVC name (e.g. windows-2022 -> msvc-2022)
74
build_config: ${{ matrix.config }}
75
76
- - name: Checkout Vcpkg ${{ inputs.vcpkg_version }}
77
- working-directory: C:\vcpkg
78
- run: |
79
- git fetch
80
- git checkout ${{ inputs.vcpkg_version }}
+ - name: Clean Vcpkg Directory
+ working-directory: C:\vcpkg
+ run: git clean -ffdx
+
+ - name: Checkout & Update Vcpkg ${{ inputs.vcpkg_version }}
81
82
+ run: |
83
+ git fetch
84
+ git pull --rebase
85
+ git checkout ${{ inputs.vcpkg_version }}
86
+ bootstrap-vcpkg.bat
87
+ vcpkg.exe integrate install
88
89
- name: Restore Vcpkg Cache
90
uses: actions/cache@v4
0 commit comments