summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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