Skip to content

Commit db91e07

Browse files
Fix vcpkg triplet suffix matrix parameter.
vcpkg_triplet -> vcpkg_triplet_suffix Also add comments to include/exclude statements to easier understand their effects on the matrix.
1 parent 4dd70f4 commit db91e07

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/desktop.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,27 @@ jobs:
2222
architecture: ["x64", "x86"]
2323
python_version: [3.7]
2424
include:
25+
# Add these Windows jobs.
2526
- os: windows-latest
2627
build_type: "Release"
2728
architecture: "x64"
2829
msvc_runtime: "static"
29-
vcpkg_triplet: "windows-static"
30+
vcpkg_triplet_suffix: "windows-static"
3031
- os: windows-latest
3132
build_type: "Debug"
3233
architecture: "x86"
3334
msvc_runtime: "dynamic"
34-
vcpkg_triplet: "windows-static-md"
35+
vcpkg_triplet_suffix: "windows-static-md"
36+
37+
# Specify additional parameters for these jobs.
3538
- os: ubuntu-latest
3639
msvc_runtime: "static"
3740
vcpkg_triplet_suffix: "linux"
3841
- os: macos-latest
3942
msvc_runtime: "static"
4043
vcpkg_triplet_suffix: "osx"
4144

45+
# Don't build for x86 on MacOS.
4246
exclude:
4347
- os: macos-latest
4448
architecture: "x86"

0 commit comments

Comments
 (0)