File tree Expand file tree Collapse file tree 2 files changed +15
-16
lines changed Expand file tree Collapse file tree 2 files changed +15
-16
lines changed Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
17
- os : [ubuntu-latest, macos-latest, windows-latest]
18
- architecture : ["x64",]
19
- include :
20
- - os : ubuntu-latest
21
- architecture : " x64"
22
- - os : macos-latest
23
- architecture : " x64"
24
- - os : windows-latest
25
- architecture : " x64"
17
+ # Windows temporarily removed while broken
18
+ os : [ubuntu-latest, macos-latest]
19
+ architecture : ["x64"]
26
20
27
21
steps :
28
22
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -17,30 +17,35 @@ jobs:
17
17
strategy :
18
18
fail-fast : false
19
19
matrix :
20
- os : [windows-latest, ubuntu-latest, macos-latest]
20
+ os : [ubuntu-latest, macos-latest]
21
21
build_type : ["Release", "Debug"]
22
22
architecture : ["x64", "x86"]
23
- msvc_runtime : ["static", "dynamic"]
24
23
python_version : [3.7]
25
24
include :
25
+ # Add these Windows jobs.
26
26
- os : windows-latest
27
+ build_type : " Release"
28
+ architecture : " x64"
29
+ msvc_runtime : " static"
27
30
vcpkg_triplet_suffix : " windows-static"
28
31
- os : windows-latest
32
+ build_type : " Debug"
33
+ architecture : " x86"
29
34
msvc_runtime : " dynamic"
30
-
31
35
vcpkg_triplet_suffix : " windows-static-md"
36
+
37
+ # Specify additional parameters for these jobs.
32
38
- os : ubuntu-latest
39
+ msvc_runtime : " static"
33
40
vcpkg_triplet_suffix : " linux"
34
41
- os : macos-latest
42
+ msvc_runtime : " static"
35
43
vcpkg_triplet_suffix : " osx"
36
44
45
+ # Don't build for x86 on MacOS.
37
46
exclude :
38
47
- os : macos-latest
39
48
architecture : " x86"
40
- - os : macos-latest
41
- msvc_runtime : " dynamic"
42
- - os : ubuntu-latest
43
- msvc_runtime : " dynamic"
44
49
45
50
steps :
46
51
- name : setup Xcode version (macos)
You can’t perform that action at this time.
0 commit comments