summaryrefslogtreecommitdiffstats
path: root/.github/workflows/daily-build.yml
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-04-29 17:36:17 (GMT)
committerGitHub <noreply@github.com>2023-04-29 17:36:17 (GMT)
commit2c6316ec57e3ab0399242161677e78e0884e58fa (patch)
tree5182a667e6bc1e0dfe7eac95da4e1f5ef0008431 /.github/workflows/daily-build.yml
parentc66eaccde0b9013c46323b15cfa3d6565d6794e8 (diff)
downloadhdf5-2c6316ec57e3ab0399242161677e78e0884e58fa.zip
hdf5-2c6316ec57e3ab0399242161677e78e0884e58fa.tar.gz
hdf5-2c6316ec57e3ab0399242161677e78e0884e58fa.tar.bz2
Add DT workflow for creating daily binaries (#2843)
Diffstat (limited to '.github/workflows/daily-build.yml')
-rw-r--r--.github/workflows/daily-build.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml
new file mode 100644
index 0000000..0e040ca
--- /dev/null
+++ b/.github/workflows/daily-build.yml
@@ -0,0 +1,21 @@
+name: hdf5 dev daily build
+
+# Controls when the action will run. Triggers the workflow on a schedule
+on:
+ workflow_dispatch:
+ schedule:
+ - cron: "6 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' }}
+