summaryrefslogtreecommitdiffstats
path: root/.github/workflows/cmake.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/cmake.yml')
-rw-r--r--.github/workflows/cmake.yml27
1 files changed, 23 insertions, 4 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index 11a010c..cca783a 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -19,30 +19,49 @@ jobs:
name: "CMake Debug Thread-Safety Workflows"
uses: ./.github/workflows/main-cmake.yml
with:
- thread_safety: true
+ thread_safety: "TS"
build_mode: "Debug"
call-release-thread-cmake:
name: "CMake Release Thread-Safety Workflows"
uses: ./.github/workflows/main-cmake.yml
with:
- thread_safety: true
+ thread_safety: "TS"
build_mode: "Release"
call-debug-cmake:
name: "CMake Debug Workflows"
uses: ./.github/workflows/main-cmake.yml
with:
- thread_safety: false
+ thread_safety: ""
build_mode: "Debug"
call-release-cmake:
name: "CMake Release Workflows"
uses: ./.github/workflows/main-cmake.yml
with:
- thread_safety: false
+ thread_safety: ""
build_mode: "Release"
+ call-release-bintest:
+ name: "CMake Test Release Binaries"
+ needs: call-release-cmake
+ uses: ./.github/workflows/cmake-bintest.yml
+ with:
+ build_mode: "Release"
+
+ call-release-par:
+ name: "CMake Parallel Release Workflows"
+ uses: ./.github/workflows/main-cmake-par.yml
+ with:
+ build_mode: "Release"
+
+ call-debug-par:
+ name: "CMake Parallel Debug Workflows"
+ uses: ./.github/workflows/main-cmake-par.yml
+ with:
+ build_mode: "Debug"
+
call-release-cmake-intel:
name: "CMake Intel Workflows"
uses: ./.github/workflows/intel-cmake.yml