Skip to content

Commit

Permalink
appveyor: Limit fetching commits to have the latest vcpkg environment
Browse files Browse the repository at this point in the history
  • Loading branch information
trueqbit committed May 18, 2024
1 parent 4a60e5a commit 0ea7e18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ for:
install:
- |-
cd C:\Tools\vcpkg
git fetch --tags && git checkout 2024.04.26
git fetch --depth 1 origin tags/2024.04.26 && git checkout 2024.04.26
cd %APPVEYOR_BUILD_FOLDER%
C:\Tools\vcpkg\bootstrap-vcpkg.bat -disableMetrics
C:\Tools\vcpkg\vcpkg integrate install
Expand Down Expand Up @@ -142,7 +142,7 @@ for:
install:
- |-
pushd $HOME/vcpkg
git fetch --tags && git checkout 2024.04.26
git fetch --depth 1 origin tags/2024.04.26 && git checkout 2024.04.26
popd
$HOME/vcpkg/bootstrap-vcpkg.sh -disableMetrics
$HOME/vcpkg/vcpkg integrate install --overlay-triplets=vcpkg/triplets
Expand Down

0 comments on commit 0ea7e18

Please sign in to comment.