File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 32
32
# Get the code
33
33
- uses : actions/checkout@v2
34
34
35
- # hardcode cmake version
36
- - name : Setup cmake
37
- uses : jwlawson/actions-setup-cmake@v1.12
38
- with :
39
- cmake-version : ' 3.22.3'
40
-
41
35
# Install Ruby for the windows build
42
36
- uses : ruby/setup-ruby@v1
43
37
id : ruby-inst
Original file line number Diff line number Diff line change @@ -30,9 +30,11 @@ cd "${SCRIPT_DIR}"
30
30
# Build vcpkg
31
31
if [ ! -d " vcpkg" ]; then
32
32
echo " Cloning vcpkg"
33
- git clone --depth 1 --branch " ${VCPKG_BRANCH:- 2022.06.16.1 } " https://github.com/microsoft/vcpkg.git vcpkg
33
+ git clone --depth 1 --branch " ${VCPKG_BRANCH:- 2022.08.15 } " https://github.com/microsoft/vcpkg.git vcpkg
34
34
fi
35
35
36
+ export VCPKG_ROOT=" $SCRIPT_DIR /vcpkg"
37
+
36
38
if [ ! -f " vcpkg/vcpkg" ]; then
37
39
echo " Building vcpkg"
38
40
cd vcpkg
Original file line number Diff line number Diff line change @@ -30,9 +30,11 @@ cd "${SCRIPT_DIR}"
30
30
# Build vcpkg
31
31
if [ ! -d " vcpkg" ]; then
32
32
echo " Cloning vcpkg"
33
- git clone --depth 1 --branch 2022.06.16.1 https://github.com/microsoft/vcpkg.git vcpkg
33
+ git clone --depth 1 --branch 2022.08.15 https://github.com/microsoft/vcpkg.git vcpkg
34
34
fi
35
35
36
+ export VCPKG_ROOT=" $SCRIPT_DIR /vcpkg"
37
+
36
38
if [ ! -f " vcpkg/vcpkg" ]; then
37
39
echo " Building vcpkg"
38
40
cd vcpkg
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ if not exist "vcpkg\" (
8
8
git clone --depth 1 --branch 2022.08.15 https://github.com/microsoft/vcpkg.git vcpkg
9
9
)
10
10
11
+ set VCPKG_ROOT = %~dp0 /vcpkg
12
+
11
13
if not exist " vcpkg\vcpkg.exe" (
12
14
cd vcpkg
13
15
echo Building vcpkg
You can’t perform that action at this time.
0 commit comments