summaryrefslogtreecommitdiffstats
path: root/.github/workflows/build_cmake.yml
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-12 18:31:37 (GMT)
committerGitHub <noreply@github.com>2020-12-12 18:31:37 (GMT)
commit58874ad1a49d7c3bc61b8390ee1fde6ddd02dccc (patch)
tree1c01e074e0c119f9f174dc6c9ca54927d6b6cd7b /.github/workflows/build_cmake.yml
parent6aaad9738956594244321eda91aa363168139099 (diff)
downloadDoxygen-58874ad1a49d7c3bc61b8390ee1fde6ddd02dccc.zip
Doxygen-58874ad1a49d7c3bc61b8390ee1fde6ddd02dccc.tar.gz
Doxygen-58874ad1a49d7c3bc61b8390ee1fde6ddd02dccc.tar.bz2
Update build_cmake.yml
Diffstat (limited to '.github/workflows/build_cmake.yml')
-rw-r--r--.github/workflows/build_cmake.yml14
1 files changed, 12 insertions, 2 deletions
diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml
index a397437..891d15d 100644
--- a/.github/workflows/build_cmake.yml
+++ b/.github/workflows/build_cmake.yml
@@ -11,15 +11,25 @@ jobs:
matrix:
config:
- {
- name: "Ubuntu Latest GCC", artifact: "Linux.tar.xz",
+ name: "Ubuntu Latest GCC Release", artifact: "Linux.tar.xz",
os: ubuntu-latest,
build_type: "Release", cc: "gcc", cxx: "g++"
}
- {
- name: "Ubuntu Latest GCC", artifact: "Linux.tar.xz",
+ name: "Ubuntu Latest GCC Debug", artifact: "Linux.tar.xz",
os: ubuntu-latest,
build_type: "Debug", cc: "gcc", cxx: "g++"
}
+ - {
+ name: "Ubuntu Latest Clang Release", artifact: "Linux.tar.xz",
+ os: ubuntu-latest,
+ build_type: "Release", cc: "clang", cxx: "clang++"
+ }
+ - {
+ name: "Ubuntu Latest Clang Debug", artifact: "Linux.tar.xz",
+ os: ubuntu-latest,
+ build_type: "Debug", cc: "clang", cxx: "clang++"
+ }
steps:
- uses: actions/checkout@v1