summaryrefslogtreecommitdiffstats
path: root/.github/workflows/daily-build.yml
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-05-18 18:07:19 (GMT)
committerGitHub <noreply@github.com>2023-05-18 18:07:19 (GMT)
commit6787a5bbef0e69aacadc9182f773ffc8a6d12127 (patch)
tree32302d98fbebaeca74f2a1c9d27b06e1a2b8fe74 /.github/workflows/daily-build.yml
parent2b70d0dfdfa810e6c7b4e6d35922e58574c487f6 (diff)
downloadhdf5-6787a5bbef0e69aacadc9182f773ffc8a6d12127.zip
hdf5-6787a5bbef0e69aacadc9182f773ffc8a6d12127.tar.gz
hdf5-6787a5bbef0e69aacadc9182f773ffc8a6d12127.tar.bz2
Hdf5 1 12 dt action (#2965)
Diffstat (limited to '.github/workflows/daily-build.yml')
-rw-r--r--.github/workflows/daily-build.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml
new file mode 100644
index 0000000..63b7dab
--- /dev/null
+++ b/.github/workflows/daily-build.yml
@@ -0,0 +1,28 @@
+name: hdf5 1.12 daily build
+
+# Controls when the action will run. Triggers the workflow on a schedule
+on:
+ workflow_dispatch:
+ schedule:
+ - cron: "8 0 * * *"
+
+# A workflow run is made up of one or more jobs that can run sequentially or
+# in parallel.
+jobs:
+ call-workflow-tarball:
+ uses: ./.github/workflows/tarball.yml
+
+ call-workflow-ctest:
+ needs: call-workflow-tarball
+ uses: ./.github/workflows/cmake-ctest.yml
+ with:
+ file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
+ if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
+
+ call-workflow-release:
+ needs: call-workflow-ctest
+ uses: ./.github/workflows/release.yml
+ with:
+ file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
+ if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
+