Skip to content

Commit 8f93b9d

Browse files
committed
* changed build matrix to exclude
windows for now, going to make seperate MR for implementing that
1 parent 39041c4 commit 8f93b9d

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.github/workflows/tests_linux.yml renamed to .github/workflows/test_matrix.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,24 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
config:
16+
# - {
17+
# name: "Windows MSVC",
18+
# os: windows-latest,
19+
# build_type: "Release", cc: "cl", cxx: "cl",
20+
# environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat"
21+
# }
1622
- {
17-
name: "Windows Latest MSVC", artifact: "Windows-MSVC.tar.xz",
18-
os: windows-latest,
19-
build_type: "Release", cc: "cl", cxx: "cl",
20-
environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat"
23+
name: "Ubuntu gcc",
24+
os: ubuntu-latest,
25+
build_type: "Release", cc: "gcc", cxx: "g++"
2126
}
2227
- {
23-
name: "Ubuntu",
28+
name: "Ubuntu clang",
2429
os: ubuntu-latest,
25-
build_type: "Release", cc: "gcc", cxx: "g++"
30+
build_type: "Release", cc: "clang", cxx: "clang++"
2631
}
2732
- {
28-
name: "macOS",
33+
name: "macOS clang",
2934
os: macos-latest,
3035
build_type: "Release", cc: "clang", cxx: "clang++"
3136
}

0 commit comments

Comments
 (0)