summaryrefslogtreecommitdiffstats
path: root/.github/workflows/vol.yml
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2023-11-15 14:20:50 (GMT)
committerGitHub <noreply@github.com>2023-11-15 14:20:50 (GMT)
commitc779464bfe3dabd767144526a868a5b06538161f (patch)
tree24dbf660c97b36d8634ce2cd8440cb2b61e3bcb3 /.github/workflows/vol.yml
parente807dee0fd6c007d7c41327c1ed0e8f5bc617f72 (diff)
downloadhdf5-c779464bfe3dabd767144526a868a5b06538161f.zip
hdf5-c779464bfe3dabd767144526a868a5b06538161f.tar.gz
hdf5-c779464bfe3dabd767144526a868a5b06538161f.tar.bz2
Add GitHub actions for testing VOL connectors (#3849)
* Fix issue with HDF5_VOL_ALLOW_EXTERNAL CMake variable * Add initial API test workflow * Initialize parallel testing with MPI_THREAD_MULTIPLE when testing API * Add CMake variable to allow specifying a VOL connector's package name * Remove call to MPI_Init in serial API tests While previously necessary, it now interferes with VOL connectors that may need to be initialized with MPI_THREAD_MULTIPLE
Diffstat (limited to '.github/workflows/vol.yml')
-rw-r--r--.github/workflows/vol.yml48
1 files changed, 48 insertions, 0 deletions
diff --git a/.github/workflows/vol.yml b/.github/workflows/vol.yml
new file mode 100644
index 0000000..ac2a9f5
--- /dev/null
+++ b/.github/workflows/vol.yml
@@ -0,0 +1,48 @@
+name: hdf5 VOL connectors CI
+
+# Run VOL connector CI daily at 06:00 CDT (11:00 UTC)
+on:
+ workflow_dispatch:
+ schedule:
+ - cron: "0 11 * * *"
+
+permissions:
+ contents: read
+
+jobs:
+ # Build and test individual VOL connectors by using HDF5's
+ # CMake FetchContent functionality.
+ #hdf5_vol_daos_fetchcontent:
+ # uses: ./.github/workflows/vol_daos.yml
+ # with:
+ # build_mode: "Release"
+
+ hdf5_vol_rest_fetchcontent:
+ uses: ./.github/workflows/vol_rest.yml
+ with:
+ build_mode: "Release"
+
+ hdf5_vol_ext_passthru_fetchcontent:
+ uses: ./.github/workflows/vol_ext_passthru.yml
+ with:
+ build_mode: "Release"
+
+ hdf5_vol_async_fetchcontent:
+ uses: ./.github/workflows/vol_async.yml
+ with:
+ build_mode: "Release"
+
+ hdf5_vol_cache_fetchcontent:
+ uses: ./.github/workflows/vol_cache.yml
+ with:
+ build_mode: "Release"
+
+ hdf5_vol_adios2:
+ uses: ./.github/workflows/vol_adios2.yml
+ with:
+ build_mode: "Release"
+
+ hdf5_vol_log:
+ uses: ./.github/workflows/vol_log.yml
+ with:
+ build_mode: "Release"