File tree Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -24,16 +24,12 @@ jobs:
24
24
- name : Install
25
25
shell : bash
26
26
run : |
27
- if [ "$RUNNER_OS" == "macOS" ]; then
28
- brew install vcpkg
29
- git clone https://github.com/microsoft/vcpkg "$HOME/vcpkg"
30
- export VCPKG_ROOT="$HOME/vcpkg"
31
- echo "VCPKG_ROOT=$HOME/vcpkg" >> $GITHUB_ENV
32
- elif [ "$RUNNER_OS" == "Linux" ]; then
33
- echo "VCPKG_ROOT=/usr/local/share/vcpkg" >> $GITHUB_ENV
34
- elif [ "$RUNNER_OS" == "Windows" ]; then
35
- echo "VCPKG_ROOT=C:/vcpkg" >> $GITHUB_ENV
36
- fi
27
+ export VCPKG_VERSION=2024.12.16
28
+ brew install vcpkg
29
+ git clone --depth 1 --branch $VCPKG_VERSION https://github.com/microsoft/vcpkg.git --single-branch "$HOME/vcpkg"
30
+ export VCPKG_ROOT="$HOME/vcpkg"
31
+ sh $VCPKG_ROOT/bootstrap-vcpkg.sh
32
+ echo "VCPKG_ROOT=$HOME/vcpkg" >> $GITHUB_ENV
37
33
38
34
- name : Check Tools
39
35
run : |
You can’t perform that action at this time.
0 commit comments