You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
585 B
21 lines
585 B
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' }}
|
|
|
|
|