Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 22 additions & 21 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,28 @@ jobs:
fail-fast: false
matrix:
config:
- {
name: "Windows Latest MSVC", artifact: "Windows-MSVC.7z",
os: windows-latest,
cc: "cl", cxx: "cl",
environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat"
}
- {
name: "Windows Latest MinGW", artifact: "Windows-MinGW.7z",
os: windows-latest,
cc: "gcc", cxx: "g++"
}
- {
name: "Ubuntu Latest GCC", artifact: "Linux.7z",
os: ubuntu-latest,
cc: "gcc", cxx: "g++"
}
- {
name: "macOS Latest Clang", artifact: "macOS.7z",
os: macos-latest,
cc: "clang", cxx: "clang++"
}
- name: "Ubuntu Latest GCC"
artifact: "Linux.7z"
os: ubuntu-latest
cc: "gcc"
cxx: "g++"

# - {
# name: "Windows Latest MSVC", artifact: "Windows-MSVC.7z",
# os: windows-latest,
# cc: "cl", cxx: "cl",
# environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat"
# }
# - {
# name: "Windows Latest MinGW", artifact: "Windows-MinGW.7z",
# os: windows-latest,
# cc: "gcc", cxx: "g++"
# }
# - {
# name: "macOS Latest Clang", artifact: "macOS.7z",
# os: macos-latest,
# cc: "clang", cxx: "clang++"
# }

steps:
- uses: actions/checkout@v1
Expand Down