Skip to content

Commit 91e45a9

Browse files
committed
ci: forced usage of vcpkg submodule instead of built-in vcpkg distribution
1 parent 0e258ad commit 91e45a9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
# Note the current convention is to use the -S and -B options here to specify source
111111
# and build directories, but this is only available with CMake 3.13 and higher.
112112
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
113-
run: cmake "${{ github.workspace }}" --preset linux-x64-debug
113+
run: cmake "${{ github.workspace }}" -DVCPKG_FORCE_USE_SUBMODULE_DIST=ON --preset linux-x64-debug
114114

115115
- name: Build
116116
working-directory: ${{ github.workspace }}/build

.github/workflows/nightly-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106

107107
- name: Configure CMake
108108
working-directory: ${{ github.workspace }}/build
109-
run: cmake "${{ github.workspace }}" --preset ${{ matrix.cmake_preset }}
109+
run: cmake "${{ github.workspace }}" -DVCPKG_FORCE_USE_SUBMODULE_DIST=ON --preset ${{ matrix.cmake_preset }}
110110

111111
- name: Build
112112
working-directory: ${{ github.workspace }}/build

0 commit comments

Comments
 (0)