summaryrefslogtreecommitdiffstats
path: root/.github/workflows/daily-build.yml
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2024-02-08 13:58:08 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2024-02-14 22:08:37 (GMT)
commitfed6e095e517d1c1b0a82ec7f6b5a4dc04f523e8 (patch)
tree651860dc59e8dc94b978660a29149fa4fd098746 /.github/workflows/daily-build.yml
parent3cd2b678bf1f971d107a55240f9a12fa8e1a8df5 (diff)
downloadhdf5-fed6e095e517d1c1b0a82ec7f6b5a4dc04f523e8.zip
hdf5-fed6e095e517d1c1b0a82ec7f6b5a4dc04f523e8.tar.gz
hdf5-fed6e095e517d1c1b0a82ec7f6b5a4dc04f523e8.tar.bz2
Add abi-complience check and upload to releases (#3996)
Diffstat (limited to '.github/workflows/daily-build.yml')
-rw-r--r--.github/workflows/daily-build.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml
index fadf6ff..257b352 100644
--- a/.github/workflows/daily-build.yml
+++ b/.github/workflows/daily-build.yml
@@ -27,8 +27,18 @@ jobs:
#use_environ: snapshots
if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
- call-workflow-release:
+ call-workflow-abi:
needs: [call-workflow-tarball, call-workflow-ctest]
+ uses: ./.github/workflows/abi-report.yml
+ with:
+ file_ref: '1_14_3'
+ file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
+ use_tag: snapshot
+ use_environ: snapshots
+ if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
+
+ call-workflow-release:
+ needs: [call-workflow-tarball, call-workflow-ctest, call-workflow-abi]
permissions:
contents: write # In order to allow tag creation
uses: ./.github/workflows/release-files.yml