diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2024-01-31 14:13:15 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2024-02-14 21:37:13 (GMT) |
commit | ec17e5662513945e7f040c5bc406672e3bbd10b8 (patch) | |
tree | fbe315ba96a5b696ec4ffae3ef79c9bf4ff315b2 /.github/workflows/autotools.yml | |
parent | f57a0dbec6b3148f22b105863b971404cfee439c (diff) | |
download | hdf5-ec17e5662513945e7f040c5bc406672e3bbd10b8.zip hdf5-ec17e5662513945e7f040c5bc406672e3bbd10b8.tar.gz hdf5-ec17e5662513945e7f040c5bc406672e3bbd10b8.tar.bz2 |
Add binary testing to CI testing (#3971)
* Add binary test job
* Correct names of jobs
* Add build mode to binary names
* Limit packaging execution
* Make mac DragNDrop optional
* Format if checks
* fix checks for TS
* Allow examples to be packaged
* Correct if NOT format
* Correct configure and workflow call
* Separate out CMake/Autotools Parallel job
* Correct binary examples path
* Correct dir path for windows test
* Correct paths and add extlibs
* Windows binaries do not have a share folder
Diffstat (limited to '.github/workflows/autotools.yml')
-rw-r--r-- | .github/workflows/autotools.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/autotools.yml b/.github/workflows/autotools.yml index 68d5a2f..e61c14b 100644 --- a/.github/workflows/autotools.yml +++ b/.github/workflows/autotools.yml @@ -17,7 +17,19 @@ jobs: call-parallel-special-autotools: name: "Autotools Parallel Special Workflows" + uses: ./.github/workflows/main-auto-par-spc.yml + + call-debug-parallel-autotools: + name: "Autotools Parallel Workflows" uses: ./.github/workflows/main-auto-par.yml + with: + build_mode: "debug" + + call-release-parallel-autotools: + name: "Autotools Parallel Workflows" + uses: ./.github/workflows/main-auto-par.yml + with: + build_mode: "production" call-debug-thread-autotools: name: "Autotools Debug Thread-Safety Workflows" |