-
-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split out autools/cmake to callable workflows
- Loading branch information
Showing
3 changed files
with
92 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: hdf5 dev autools CI | ||
|
||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
on: | ||
workflow_call: | ||
|
||
permissions: | ||
contents: read | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or | ||
# 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: | ||
uses: ./.github/workflows/main-auto-spc.yml | ||
|
||
call-parallel-special-autotools: | ||
uses: ./.github/workflows/main-auto-par.yml | ||
|
||
call-debug-thread-autotools: | ||
uses: ./.github/workflows/main-auto.yml | ||
with: | ||
thread_safety: true | ||
build_mode: "debug" | ||
|
||
call-release-thread-autotools: | ||
uses: ./.github/workflows/main-auto.yml | ||
with: | ||
thread_safety: true | ||
build_mode: "production" | ||
|
||
call-debug-autotools: | ||
uses: ./.github/workflows/main-auto.yml | ||
with: | ||
thread_safety: false | ||
build_mode: "debug" | ||
|
||
call-release-autotools: | ||
uses: ./.github/workflows/main-auto.yml | ||
with: | ||
thread_safety: false | ||
build_mode: "production" | ||
|
||
call-release-auto-intel: | ||
uses: ./.github/workflows/intel-auto.yml | ||
with: | ||
build_mode: "production" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: hdf5 dev cmake CI | ||
|
||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
on: | ||
workflow_call: | ||
|
||
permissions: | ||
contents: read | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or | ||
# in parallel. We just have one job, but the matrix items defined below will | ||
# run in parallel. | ||
jobs: | ||
call-debug-thread-cmake: | ||
uses: ./.github/workflows/main-cmake.yml | ||
with: | ||
thread_safety: true | ||
build_mode: "Debug" | ||
|
||
call-release-thread-cmake: | ||
uses: ./.github/workflows/main-cmake.yml | ||
with: | ||
thread_safety: true | ||
build_mode: "Release" | ||
|
||
call-debug-cmake: | ||
uses: ./.github/workflows/main-cmake.yml | ||
with: | ||
thread_safety: false | ||
build_mode: "Debug" | ||
|
||
call-release-cmake: | ||
uses: ./.github/workflows/main-cmake.yml | ||
with: | ||
thread_safety: false | ||
build_mode: "Release" | ||
|
||
call-release-cmake-intel: | ||
uses: ./.github/workflows/intel-cmake.yml | ||
with: | ||
build_mode: "Release" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters