mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-09 07:32:32 +08:00
93 lines
3.2 KiB
YAML
93 lines
3.2 KiB
YAML
name: hdf5 dev daily build
|
|
|
|
# Triggers the workflow on a schedule or on demand
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "6 0 * * *"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
get-old-names:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
hdf5-name: ${{ steps.gethdf5base.outputs.HDF5_NAME_BASE }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4.1.7
|
|
|
|
- name: Get hdf5 release base name
|
|
uses: dsaltares/fetch-gh-release-asset@master
|
|
with:
|
|
version: 'tags/snapshot'
|
|
file: 'last-file.txt'
|
|
|
|
- name: Read base-name file
|
|
id: gethdf5base
|
|
run: echo "HDF5_NAME_BASE=$(cat last-file.txt)" >> $GITHUB_OUTPUT
|
|
|
|
- run: echo "hdf5 base name is ${{ steps.gethdf5base.outputs.HDF5_NAME_BASE }}."
|
|
|
|
call-workflow-tarball:
|
|
uses: ./.github/workflows/tarball.yml
|
|
with:
|
|
use_tag: snapshot
|
|
use_environ: snapshots
|
|
|
|
call-workflow-ctest:
|
|
needs: call-workflow-tarball
|
|
uses: ./.github/workflows/cmake-ctest.yml
|
|
with:
|
|
preset_name: ci-StdShar
|
|
file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
|
|
# use_tag: snapshot
|
|
use_environ: snapshots
|
|
secrets:
|
|
APPLE_CERTS_BASE64: ${{ secrets.APPLE_CERTS_BASE64 }}
|
|
APPLE_CERTS_BASE64_PASSWD: ${{ secrets.APPLE_CERTS_BASE64_PASSWD }}
|
|
KEYCHAIN_PASSWD: ${{ secrets.KEYCHAIN_PASSWD }}
|
|
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
|
|
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
|
|
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
|
|
AZURE_ENDPOINT: ${{ secrets.AZURE_ENDPOINT }}
|
|
AZURE_CODE_SIGNING_NAME: ${{ secrets.AZURE_CODE_SIGNING_NAME }}
|
|
AZURE_CERT_PROFILE_NAME: ${{ secrets.AZURE_CERT_PROFILE_NAME }}
|
|
if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
|
|
|
|
call-workflow-abi:
|
|
needs: [call-workflow-tarball, call-workflow-ctest]
|
|
uses: ./.github/workflows/abi-report.yml
|
|
with:
|
|
file_ref: '1.14.4.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: [get-old-names, call-workflow-tarball, call-workflow-ctest, call-workflow-abi]
|
|
permissions:
|
|
contents: write # In order to allow tag creation
|
|
uses: ./.github/workflows/release-files.yml
|
|
with:
|
|
file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
|
|
file_branch: ${{ needs.call-workflow-tarball.outputs.file_branch }}
|
|
file_sha: ${{ needs.call-workflow-tarball.outputs.file_sha }}
|
|
use_tag: snapshot
|
|
use_environ: snapshots
|
|
if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
|
|
|
|
call-workflow-remove:
|
|
needs: [get-old-names, call-workflow-tarball, call-workflow-ctest, call-workflow-abi, call-workflow-release]
|
|
permissions:
|
|
contents: write # In order to allow file deletion
|
|
uses: ./.github/workflows/remove-files.yml
|
|
with:
|
|
file_base: ${{ needs.get-old-names.outputs.hdf5-name }}
|
|
use_tag: snapshot
|
|
use_environ: snapshots
|
|
if: ${{ (needs.call-workflow-tarball.outputs.has_changes == 'true') && (needs.get-old-names.outputs.hdf5-name != needs.call-workflow-tarball.outputs.file_base) }}
|
|
|