Skip to content

Commit 118bddc

Browse files
committed
VCPKG triplet is configure arg, not build arg
1 parent 835a74c commit 118bddc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040
run: |
4141
$args = @(
4242
"-DGITHUB_REF_TYPE=${{github.ref_type}}",
43-
"-DGITHUB_REF_NAME=${{github.ref_name}}"
43+
"-DGITHUB_REF_NAME=${{github.ref_name}}",
44+
"-DVCPKG_TARGET_TRIPLET=x64-windows-static"
4445
)
4546
if ("${{steps.fetch-key.outputs.HAVE_KEY}}" -eq "true") {
4647
$args += "-DSIGNTOOL_KEY_ARGS=/f;${{steps.fetch-key.outputs.PATH}}"
@@ -54,8 +55,7 @@ jobs:
5455
--config ${{matrix.config}} `
5556
--parallel `
5657
-- `
57-
/p:CL_MPCount= `
58-
-DVCPKG_TARGET_TRIPLET=x64-windows-static
58+
/p:CL_MPCount=
5959
$version="$(Get-Content version.txt)"
6060
Add-Content $Env:GITHUB_OUTPUT "VERSION=${version}"
6161
- name: Install debug symbols

0 commit comments

Comments
 (0)