diff --git a/.github/workflows/autotools.yml b/.github/workflows/autotools.yml index f9d70435589..640c410e9de 100644 --- a/.github/workflows/autotools.yml +++ b/.github/workflows/autotools.yml @@ -11,39 +11,38 @@ permissions: # in parallel. We just have one job, but the matrix items defined below will # run in parallel. jobs: - workflow-autotools: - name: "Autotools Workflows" - call-workflow-special-autotools: + name: "Autotools" + call-workflow-special-autotools: uses: ./.github/workflows/main-auto-spc.yml - call-parallel-special-autotools: + call-parallel-special-autotools: uses: ./.github/workflows/main-auto-par.yml - call-debug-thread-autotools: + call-debug-thread-autotools: uses: ./.github/workflows/main-auto.yml with: thread_safety: true build_mode: "debug" - call-release-thread-autotools: + call-release-thread-autotools: uses: ./.github/workflows/main-auto.yml with: thread_safety: true build_mode: "production" - call-debug-autotools: + call-debug-autotools: uses: ./.github/workflows/main-auto.yml with: thread_safety: false build_mode: "debug" - call-release-autotools: + call-release-autotools: uses: ./.github/workflows/main-auto.yml with: thread_safety: false build_mode: "production" - call-release-auto-intel: + call-release-auto-intel: uses: ./.github/workflows/intel-auto.yml with: build_mode: "production" diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 67621ca6b51..b7044ff1921 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -11,31 +11,32 @@ permissions: # in parallel. We just have one job, but the matrix items defined below will # run in parallel. jobs: - call-debug-thread-cmake: + name: "CMake" + call-debug-thread-cmake: uses: ./.github/workflows/main-cmake.yml with: thread_safety: true build_mode: "Debug" - call-release-thread-cmake: + call-release-thread-cmake: uses: ./.github/workflows/main-cmake.yml with: thread_safety: true build_mode: "Release" - call-debug-cmake: + call-debug-cmake: uses: ./.github/workflows/main-cmake.yml with: thread_safety: false build_mode: "Debug" - call-release-cmake: + call-release-cmake: uses: ./.github/workflows/main-cmake.yml with: thread_safety: false build_mode: "Release" - call-release-cmake-intel: + call-release-cmake-intel: uses: ./.github/workflows/intel-cmake.yml with: build_mode: "Release"