forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make release msvc vcpkg step match the PR equivalent
- Loading branch information
Showing
1 changed file
with
2 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,12 +162,10 @@ jobs: | |
uses: microsoft/[email protected] | ||
- name: Install dependencies (windows msvc) (2/3) | ||
if: runner.os == 'Windows' | ||
uses: lukka/run-vcpkg@main | ||
uses: lukka/run-vcpkg@v10 | ||
id: runvcpkg | ||
with: | ||
additionalCachedPaths: '${{ runner.workspace }}/Cataclysm-DDA/msvc-full-features/vcpkg_installed' | ||
appendedCacheKey: ${{ hashFiles( 'msvc-full-features/vcpkg.json', '.github/vcpkg_triplets/**' ) }}-${{ matrix.arch }}-1 | ||
setupOnly: true | ||
appendedCacheKey: ${{ hashFiles( 'msvc-full-features/vcpkg.json', '.github/vcpkg_triplets/**' ) }}-${{ matrix.arch }}-2 | ||
vcpkgDirectory: '${{ runner.workspace }}/b/vcpkg' | ||
# We have to use at least this version of vcpkg to include fixes for yasm-tool's | ||
# availability only as an x86 host tool. Keep it in sync with the builtin-baseline | ||
|