Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 35 additions & 24 deletions .github/workflows/cmake-bintest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:
description: "The hdf5 base name of the binaries"
required: true
type: string
hdf_tag:
description: "The hdf5 release tag for asset download (version only, without hdf5- prefix)"
required: false
type: string
default: ''
file_base:
description: "The common base name of the source tarballs"
required: true
Expand Down Expand Up @@ -48,19 +53,21 @@ jobs:

- name: Get hdf5 snapshot
if: ${{ (inputs.use_environ == 'snapshots') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
token: ${{ github.token }}

- name: Get hdf5 release
if: ${{ (inputs.use_environ == 'release') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/${{ inputs.use_hdf }}'
file: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
repository: 'HDFGroup/hdf5'
tag: '${{ inputs.hdf_tag }}'
fileName: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
token: ${{ github.token }}

- name: Uncompress gh binary (Win)
run: 7z x ${{ github.workspace }}/${{ inputs.use_hdf }}-win-vs2022_cl.zip
Expand Down Expand Up @@ -159,19 +166,21 @@ jobs:

- name: Get hdf5 snapshot
if: ${{ (inputs.use_environ == 'snapshots') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
token: ${{ github.token }}

- name: Get hdf5 release
if: ${{ (inputs.use_environ == 'release') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/${{ inputs.use_hdf }}'
file: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
repository: 'HDFGroup/hdf5'
tag: '${{ inputs.hdf_tag }}'
fileName: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
token: ${{ github.token }}

- name: Uncompress gh binary (Linux)
run: tar -zxvf ${{ github.workspace }}/${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz
Expand Down Expand Up @@ -260,19 +269,21 @@ jobs:

- name: Get hdf5 snapshot
if: ${{ (inputs.use_environ == 'snapshots') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
token: ${{ github.token }}

- name: Get hdf5 release
if: ${{ (inputs.use_environ == 'release') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/${{ inputs.use_hdf }}'
file: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
repository: 'HDFGroup/hdf5'
tag: '${{ inputs.hdf_tag }}'
fileName: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
token: ${{ github.token }}

- name: Uncompress gh binary (MacOS_latest)
run: tar -zxvf ${{ github.workspace }}/${{ inputs.use_hdf }}-macos14_clang*.tar.gz
Expand Down
59 changes: 35 additions & 24 deletions .github/workflows/cmake-ctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:
description: "The hdf5 base name of the binaries"
required: true
type: string
hdf_tag:
description: "The hdf5 release tag for asset download (version only, without hdf5- prefix)"
required: false
type: string
default: ''
snap_name:
description: 'The name in the source tarballs'
type: string
Expand Down Expand Up @@ -120,19 +125,21 @@ jobs:

- name: Get hdf5 snapshot
if: ${{ (inputs.use_environ == 'snapshots') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
token: ${{ github.token }}

- name: Get hdf5 release
if: ${{ (inputs.use_environ == 'release') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/${{ inputs.use_hdf }}'
file: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
repository: 'HDFGroup/hdf5'
tag: '${{ inputs.hdf_tag }}'
fileName: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
token: ${{ github.token }}

- name: Uncompress gh binary (Win)
run: 7z x ${{ github.workspace }}/${{ inputs.use_hdf }}-win-vs2022_cl.zip
Expand Down Expand Up @@ -311,19 +318,21 @@ jobs:

- name: Get hdf5 snapshot
if: ${{ (inputs.use_environ == 'snapshots') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
token: ${{ github.token }}

- name: Get hdf5 release
if: ${{ (inputs.use_environ == 'release') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/${{ inputs.use_hdf }}'
file: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
repository: 'HDFGroup/hdf5'
tag: '${{ inputs.hdf_tag }}'
fileName: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
token: ${{ github.token }}

- name: List files for the space (Linux)
run: |
Expand Down Expand Up @@ -490,19 +499,21 @@ jobs:

- name: Get hdf5 snapshot
if: ${{ (inputs.use_environ == 'snapshots') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
token: ${{ github.token }}

- name: Get hdf5 release
if: ${{ (inputs.use_environ == 'release') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/${{ inputs.use_hdf }}'
file: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
repository: 'HDFGroup/hdf5'
tag: '${{ inputs.hdf_tag }}'
fileName: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
token: ${{ github.token }}

- name: List files for the space (MacOS_latest)
run: |
Expand Down
95 changes: 55 additions & 40 deletions .github/workflows/cmake-script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:
description: "The hdf5 base name of the binaries"
required: true
type: string
hdf_tag:
description: "The hdf5 release tag for asset download (version only, without hdf5- prefix)"
required: false
type: string
default: ''
snap_name:
description: 'The name in the source tarballs'
type: string
Expand Down Expand Up @@ -74,19 +79,21 @@ jobs:

- name: Get hdf5 snapshot
if: ${{ (inputs.use_environ == 'snapshots') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
token: ${{ github.token }}

- name: Get hdf5 release
if: ${{ (inputs.use_environ == 'release') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/${{ inputs.use_hdf }}'
file: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
repository: 'HDFGroup/hdf5'
tag: '${{ inputs.hdf_tag }}'
fileName: '${{ inputs.use_hdf }}-win-vs2022_cl.zip'
token: ${{ github.token }}

- name: Uncompress gh binary (Win)
run: 7z x ${{ github.workspace }}/${{ inputs.use_hdf }}-win-vs2022_cl.zip
Expand Down Expand Up @@ -219,19 +226,21 @@ jobs:

- name: Get hdf5 release
if: ${{ (inputs.use_environ == 'snapshots') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
token: ${{ github.token }}

- name: Get hdf5 release
if: ${{ (inputs.use_environ == 'release') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/${{ inputs.use_hdf }}'
file: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
repository: 'HDFGroup/hdf5'
tag: '${{ inputs.hdf_tag }}'
fileName: '${{ inputs.use_hdf }}-ubuntu-2404_gcc.tar.gz'
token: ${{ github.token }}

- name: List files for the space (Linux)
run: |
Expand Down Expand Up @@ -356,19 +365,21 @@ jobs:

- name: Get hdf5 snapshot
if: ${{ (inputs.use_environ == 'snapshots') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
token: ${{ github.token }}

- name: Get hdf5 release
if: ${{ (inputs.use_environ == 'release') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/${{ inputs.use_hdf }}'
file: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
repository: 'HDFGroup/hdf5'
tag: '${{ inputs.hdf_tag }}'
fileName: '${{ inputs.use_hdf }}-macos14_clang.tar.gz'
token: ${{ github.token }}

- name: List files for the space (MacOS_latest)
run: |
Expand Down Expand Up @@ -491,19 +502,21 @@ jobs:

- name: Get hdf5 snapshot(Windows_intel)
if: ${{ (inputs.use_environ == 'snapshots') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-win-vs2022_intel.zip'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: '${{ inputs.use_hdf }}-win-vs2022_intel.zip'
token: ${{ github.token }}

- name: Get hdf5 release(Windows_intel)
if: ${{ (inputs.use_environ == 'release') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/${{ inputs.use_hdf }}'
file: '${{ inputs.use_hdf }}-win-vs2022_intel.zip'
repository: 'HDFGroup/hdf5'
tag: '${{ inputs.hdf_tag }}'
fileName: '${{ inputs.use_hdf }}-win-vs2022_intel.zip'
token: ${{ github.token }}

- name: Uncompress gh binary (Windows_intel)
run: 7z x ${{ github.workspace }}/${{ inputs.use_hdf }}-win-vs2022_intel.zip
Expand Down Expand Up @@ -647,19 +660,21 @@ jobs:

- name: Get hdf5 release (Linux_intel)
if: ${{ (inputs.use_environ == 'snapshots') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-ubuntu-2404_intel.tar.gz'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: '${{ inputs.use_hdf }}-ubuntu-2404_intel.tar.gz'
token: ${{ github.token }}

- name: Get hdf5 release (Linux_intel)
if: ${{ (inputs.use_environ == 'release') }}
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/${{ inputs.use_hdf }}'
file: '${{ inputs.use_hdf }}-ubuntu-2404_intel.tar.gz'
repository: 'HDFGroup/hdf5'
tag: '${{ inputs.hdf_tag }}'
fileName: '${{ inputs.use_hdf }}-ubuntu-2404_intel.tar.gz'
token: ${{ github.token }}

- name: List files for the space (Linux_intel)
run: |
Expand Down
18 changes: 10 additions & 8 deletions .github/workflows/daily-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ jobs:
- uses: actions/checkout@v6.0.2

- name: Get hdf5 release base name
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: 'last-file.txt'
repository: 'HDFGroup/hdf5'
tag: 'snapshot'
fileName: 'last-file.txt'
token: ${{ github.token }}

- name: Read HDF5 base-name file
id: gethdf5base
Expand All @@ -43,11 +44,12 @@ jobs:
- run: echo "hdf5 base name is ${{ steps.gethdf5base.outputs.HDF5_NAME_BASE }}."

- name: Get plugin release base name
uses: dsaltares/fetch-gh-release-asset@master
uses: robinraju/release-downloader@v1
with:
repo: 'HDFGroup/hdf5_plugins'
version: 'tags/snapshot'
file: 'last-file.txt'
repository: 'HDFGroup/hdf5_plugins'
tag: 'snapshot'
fileName: 'last-file.txt'
token: ${{ github.token }}

- name: Read base-name file
id: getpluginbase
Expand Down
Loading
Loading