Skip to content

Commit

Permalink
jobs syntax change
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Sep 12, 2023
1 parent 9441cab commit 16cebcc
Showing 1 changed file with 14 additions and 18 deletions.
32 changes: 14 additions & 18 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,72 +27,68 @@ permissions:
# in parallel. We just have one job, but the matrix items defined below will
# run in parallel.
jobs:
call-workflow-autotools:
name: "Autotools"
steps:
- name: call-workflow-special-autotools:
workflow-autotools:
call-workflow-special-autotools:
uses: ./.github/workflows/main-auto-spc.yml

- name: call-parallel-special-autotools:
call-parallel-special-autotools:
uses: ./.github/workflows/main-auto-par.yml

- name: call-debug-thread-autotools:
call-debug-thread-autotools:
uses: ./.github/workflows/main-auto.yml
with:
thread_safety: true
build_mode: "debug"

- name: call-release-thread-autotools:
call-release-thread-autotools:
uses: ./.github/workflows/main-auto.yml
with:
thread_safety: true
build_mode: "production"

- name: call-debug-autotools:
call-debug-autotools:
uses: ./.github/workflows/main-auto.yml
with:
thread_safety: false
build_mode: "debug"

- name: call-release-autotools:
call-release-autotools:
uses: ./.github/workflows/main-auto.yml
with:
thread_safety: false
build_mode: "production"

- name: call-release-auto-intel:
call-release-auto-intel:
uses: ./.github/workflows/intel-auto.yml
with:
build_mode: "production"

call-workflow-cmake:
name: "CMake"
steps:
- name: call-debug-thread-cmake:
workflow-cmake:
call-debug-thread-cmake:
uses: ./.github/workflows/main-cmake.yml
with:
thread_safety: true
build_mode: "Debug"

- name: call-release-thread-cmake:
call-release-thread-cmake:
uses: ./.github/workflows/main-cmake.yml
with:
thread_safety: true
build_mode: "Release"

- name: call-debug-cmake:
call-debug-cmake:
uses: ./.github/workflows/main-cmake.yml
with:
thread_safety: false
build_mode: "Debug"

- name: call-release-cmake:
call-release-cmake:
uses: ./.github/workflows/main-cmake.yml
with:
thread_safety: false
build_mode: "Release"

- name: call-release-cmake-intel:
call-release-cmake-intel:
uses: ./.github/workflows/intel-cmake.yml
with:
build_mode: "Release"

0 comments on commit 16cebcc

Please sign in to comment.