summaryrefslogtreecommitdiffstats
path: root/.github/workflows/release.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/release.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/release.yml')
-rw-r--r--.github/workflows/release.yml11
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 3bf79f4..68565b6 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -86,9 +86,18 @@ jobs:
file_base: ${{ needs.create-files-ctest.outputs.file_base }}
preset_name: ci-StdShar
+ call-workflow-abi:
+ needs: [log-the-inputs, create-files-ctest, call-workflow-ctest]
+ uses: ./.github/workflows/abi-report.yml
+ with:
+ file_ref: '1_14_3'
+ file_base: ${{ needs.create-files-ctest.outputs.file_base }}
+ use_tag: ${{ needs.log-the-inputs.outputs.rel_tag }}
+ use_environ: release
+
call-workflow-release:
#needs: [call-workflow-tarball, call-workflow-ctest]
- needs: [log-the-inputs, create-files-ctest, call-workflow-ctest]
+ needs: [log-the-inputs, create-files-ctest, call-workflow-ctest, call-workflow-abi]
permissions:
contents: write # In order to allow tag creation
uses: ./.github/workflows/release-files.yml