File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
matrix :
10
10
config : [Debug, Release]
11
11
12
- runs-on : macos-11
12
+ runs-on : macos-latest
13
13
14
14
steps :
15
15
- uses : actions/checkout@v2
31
31
shell : pwsh
32
32
working-directory : build/
33
33
run : |
34
- $vcpkgToolchain = Join-Path $env:VCPKG_ROOT './scripts/buildsystems/vcpkg.cmake' -Resolve
34
+ $vcpkgToolchain = Join-Path $env:VCPKG_INSTALLATION_ROOT './scripts/buildsystems/vcpkg.cmake' -Resolve
35
35
$cmakeBuildType = '${{ matrix.config }}'
36
36
37
37
cmake "-DCMAKE_TOOLCHAIN_FILE=$vcpkgToolchain" "-DCMAKE_BUILD_TYPE=$cmakeBuildType" ${{ github.workspace }}
Original file line number Diff line number Diff line change 38
38
shell : pwsh
39
39
working-directory : build/
40
40
run : |
41
- $vcpkgToolchain = Join-Path $env:VCPKG_ROOT '.\scripts\buildsystems\vcpkg.cmake' -Resolve
41
+ $vcpkgToolchain = Join-Path $env:VCPKG_INSTALLATION_ROOT '.\scripts\buildsystems\vcpkg.cmake' -Resolve
42
42
$vcpkgTriplet = '${{ steps.set-variables.outputs.vcpkg_triplet }}'
43
43
$cmakeSharedLibs = $(if ('${{ matrix.libs }}' -eq 'shared') { 'ON' } else { 'OFF' })
44
44
$msbuildArch = $(if ('${{ matrix.arch }}' -eq 'x64') { 'X64' } else { 'Win32' })
You can’t perform that action at this time.
0 commit comments