Skip to content

Commit

Permalink
rework job syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Sep 12, 2023
1 parent b13c8bb commit 8e865ee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
11 changes: 6 additions & 5 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 8e865ee

Please sign in to comment.