summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-13 10:46:34 (GMT)
committerGitHub <noreply@github.com>2020-12-13 10:46:34 (GMT)
commitc1285e18de895fc4e297fb81b37cc54533f74529 (patch)
treec35509befdf35699f651f78bceb90adb5522b110
parent14a1c71e2929ecf78d1eec4e018ac0199ca97663 (diff)
downloadDoxygen-c1285e18de895fc4e297fb81b37cc54533f74529.zip
Doxygen-c1285e18de895fc4e297fb81b37cc54533f74529.tar.gz
Doxygen-c1285e18de895fc4e297fb81b37cc54533f74529.tar.bz2
Update build_cmake.yml
-rw-r--r--.github/workflows/build_cmake.yml20
1 files changed, 12 insertions, 8 deletions
diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml
index cef2766..cd1b462 100644
--- a/.github/workflows/build_cmake.yml
+++ b/.github/workflows/build_cmake.yml
@@ -11,24 +11,28 @@ jobs:
matrix:
config:
- {
- name: "Ubuntu Latest GCC Release", artifact: "Linux-gcc.tar.xz",
+ name: "Ubuntu Latest GCC Release",
os: ubuntu-latest,
- build_type: "Release", cc: "gcc", cxx: "g++"
+ build_type: "Release", cc: "gcc", cxx: "g++",
+ build_gen: "Unix Makefiles"
}
- {
- name: "Ubuntu Latest GCC Debug", artifact: "Linux-gcc-debug.tar.xz",
+ name: "Ubuntu Latest GCC Debug",
os: ubuntu-latest,
- build_type: "Debug", cc: "gcc", cxx: "g++"
+ build_type: "Debug", cc: "gcc", cxx: "g++",
+ build_gen: "Unix Makefiles"
}
- {
- name: "Ubuntu Latest Clang Release", artifact: "Linux-clang.tar.xz",
+ name: "Ubuntu Latest Clang Release",
os: ubuntu-latest,
- build_type: "Release", cc: "clang", cxx: "clang++"
+ build_type: "Release", cc: "clang", cxx: "clang++",
+ build_gen: "Unix Makefiles"
}
- {
- name: "Ubuntu Latest Clang Debug", artifact: "Linux-clang-debug.tar.xz",
+ name: "Ubuntu Latest Clang Debug",
os: ubuntu-latest,
build_type: "Debug", cc: "clang", cxx: "clang++"
+ build_gen: "Unix Makefiles"
}
- {
name: "macOS Latest Release",
@@ -44,7 +48,7 @@ jobs:
}
- {
name: "Windows Latest Debug", artifact: "MacOS.xz",
- os: macos-latest,
+ os: windows-latest,
build_type: "Debug", cc: "clang", cxx: "clang++",
build_gen: "Unix Makefiles"
}