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)
committerGitHub <noreply@github.com>2024-02-08 13:58:08 (GMT)
commit6b22af7c43f86f020943768e1dc99bd9bc8deeca (patch)
treecf1472e6e2376fd3541445f21a94da9a4496b4ed /.github/workflows/daily-build.yml
parent0ee99a66560422fc20864236a83bdcd0103d8f64 (diff)
downloadhdf5-6b22af7c43f86f020943768e1dc99bd9bc8deeca.zip
hdf5-6b22af7c43f86f020943768e1dc99bd9bc8deeca.tar.gz
hdf5-6b22af7c43f86f020943768e1dc99bd9bc8deeca.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 952b9db..a3f965b 100644
--- a/.github/workflows/daily-build.yml
+++ b/.github/workflows/daily-build.yml
@@ -28,8 +28,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