Skip to content

Commit 72465c0

Browse files
committed
add manual checkout of vcpkg master to all workflows
1 parent 35bfde6 commit 72465c0

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/build-deploy.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ jobs:
6767
- name: Submodule recursive
6868
run: git submodule update --init --recursive
6969

70+
- name: Update vcpkg
71+
run: |
72+
cd ${{ env.VCPKG_ROOT }}
73+
git checkout master
74+
7075
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
7176
- uses: lukka/get-cmake@latest
7277
# Restore both vcpkg and its artifacts from the GitHub cache service.

.github/workflows/deploy-docs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
- name: Submodule recursive
4141
run: git submodule update --init --recursive
4242

43+
- name: Update vcpkg
44+
run: |
45+
cd ${{ env.VCPKG_ROOT }}
46+
git checkout master
47+
4348
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
4449
- uses: lukka/get-cmake@latest
4550
# Restore both vcpkg and its artifacts from the GitHub cache service.

0 commit comments

Comments
 (0)