Skip to content

Commit 4dd70f4

Browse files
Build release-64-static and debug-86-dynamic
These are the two required checks on pull requests. Build these two instead of just the one specified in the prior change.
1 parent cd96540 commit 4dd70f4

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

.github/workflows/desktop.yml

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,33 +17,31 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
os: [windows-latest, ubuntu-latest, macos-latest]
20+
os: [ubuntu-latest, macos-latest]
2121
build_type: ["Release", "Debug"]
2222
architecture: ["x64", "x86"]
23-
msvc_runtime: ["static"]
2423
python_version: [3.7]
2524
include:
2625
- os: windows-latest
27-
vcpkg_triplet_suffix: "windows-static"
26+
build_type: "Release"
27+
architecture: "x64"
28+
msvc_runtime: "static"
29+
vcpkg_triplet: "windows-static"
30+
- os: windows-latest
31+
build_type: "Debug"
32+
architecture: "x86"
33+
msvc_runtime: "dynamic"
34+
vcpkg_triplet: "windows-static-md"
2835
- os: ubuntu-latest
36+
msvc_runtime: "static"
2937
vcpkg_triplet_suffix: "linux"
3038
- os: macos-latest
39+
msvc_runtime: "static"
3140
vcpkg_triplet_suffix: "osx"
3241

3342
exclude:
3443
- os: macos-latest
3544
architecture: "x86"
36-
- os: macos-latest
37-
msvc_runtime: "dynamic"
38-
- os: ubuntu-latest
39-
msvc_runtime: "dynamic"
40-
# Windows currently takes too long. These are (possibly temporary)
41-
# exclusions to mitigate queuing issues caused by excessive
42-
# work done on GHA on every PR.
43-
- os: windows-latest
44-
build_type: "Release"
45-
- os: windows-latest
46-
architecture: "x86"
4745

4846
steps:
4947
- name: setup Xcode version (macos)

0 commit comments

Comments
 (0)