summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/abi-report.yml171
-rw-r--r--.github/workflows/autotools.yml12
-rw-r--r--.github/workflows/clang-format-fix.yml2
-rw-r--r--.github/workflows/cmake-bintest.yml218
-rw-r--r--.github/workflows/cmake-ctest.yml126
-rw-r--r--.github/workflows/cmake.yml27
-rw-r--r--.github/workflows/codespell.yml3
-rw-r--r--.github/workflows/daily-build.yml12
-rw-r--r--.github/workflows/linux-auto-aocc-ompi.yml2
-rw-r--r--.github/workflows/main-auto-par-spc.yml137
-rw-r--r--.github/workflows/main-auto-par.yml102
-rw-r--r--.github/workflows/main-auto.yml60
-rw-r--r--.github/workflows/main-cmake-par.yml77
-rw-r--r--.github/workflows/main-cmake.yml132
-rw-r--r--.github/workflows/main.yml3
-rw-r--r--.github/workflows/nvhpc-cmake.yml4
-rw-r--r--.github/workflows/release-files.yml38
-rw-r--r--.github/workflows/release.yml16
-rw-r--r--.github/workflows/tarball.yml4
19 files changed, 885 insertions, 261 deletions
diff --git a/.github/workflows/abi-report.yml b/.github/workflows/abi-report.yml
new file mode 100644
index 0000000..93b9adb
--- /dev/null
+++ b/.github/workflows/abi-report.yml
@@ -0,0 +1,171 @@
+name: hdf5 1.14 Check Application Binary Interface (ABI)
+
+on:
+ workflow_call:
+ inputs:
+ use_tag:
+ description: 'Release version tag'
+ type: string
+ required: false
+ default: snapshot
+ use_environ:
+ description: 'Environment to locate files'
+ type: string
+ required: true
+ default: snapshots
+ file_base:
+ description: "The common base name of the binary"
+ required: true
+ type: string
+ file_ref:
+ description: "The reference name for the release binary"
+ required: true
+ type: string
+
+permissions:
+ contents: read
+
+jobs:
+ check:
+ runs-on: ubuntu-latest
+ continue-on-error: true
+
+ steps:
+ - name: Install System dependencies
+ run: |
+ sudo apt update
+ sudo apt install -q -y abi-compliance-checker abi-dumper
+ sudo apt install -q -y japi-compliance-checker
+
+ - name: Convert hdf5 reference name (Linux)
+ id: convert-hdf5lib-refname
+ run: |
+ FILE_DOTS=$(echo "${{ inputs.file_ref }}" | sed -r "s/([0-9]+)\_([0-9]+)\_([0-9]+).*/\1\.\2\.\3/")
+ echo "HDF5R_DOTS=$FILE_DOTS" >> $GITHUB_OUTPUT
+
+ - uses: actions/checkout@v4.1.1
+
+ - name: Get published binary (Linux)
+ uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
+ with:
+ name: tgz-ubuntu-2204_gcc-binary
+ path: ${{ github.workspace }}
+
+ - name: List files for the space (Linux)
+ run: |
+ ls -l ${{ github.workspace }}
+
+ - name: Uncompress gh binary (Linux)
+ run: tar -zxvf ${{ github.workspace }}/${{ inputs.file_base }}-ubuntu-2204_gcc.tar.gz
+
+ - name: Uncompress hdf5 binary (Linux)
+ run: |
+ cd "${{ github.workspace }}/hdf5"
+ tar -zxvf ${{ github.workspace }}/hdf5/HDF5-*-Linux.tar.gz --strip-components 1
+
+ - name: List files for the HDF space (Linux)
+ run: |
+ ls -l ${{ github.workspace }}/hdf5
+ ls -l ${{ github.workspace }}/hdf5/HDF_Group/HDF5
+
+ - name: set hdf5lib name
+ id: set-hdf5lib-name
+ run: |
+ HDF5DIR=${{ github.workspace }}/hdf5/HDF_Group/HDF5/
+ FILE_NAME_HDF5=$(ls ${{ github.workspace }}/hdf5/HDF_Group/HDF5)
+ FILE_VERS=$(echo "$FILE_NAME_HDF5" | sed -r "s/([0-9]+\.[0-9]+\.[0-9]+)\..*/\1/")
+ echo "HDF5_ROOT=$HDF5DIR$FILE_NAME_HDF5" >> $GITHUB_OUTPUT
+ echo "HDF5_VERS=$FILE_VERS" >> $GITHUB_OUTPUT
+
+ - name: Download reference version
+ run: |
+ mkdir "${{ github.workspace }}/hdf5R"
+ cd "${{ github.workspace }}/hdf5R"
+ wget -q https://github.com/HDFGroup/hdf5/releases/download/hdf5-${{ inputs.file_ref }}/hdf5-${{ inputs.file_ref }}-ubuntu-2204.tar.gz
+ tar zxf hdf5-${{ inputs.file_ref }}-ubuntu-2204.tar.gz
+
+ - name: List files for the space (Linux)
+ run: |
+ ls -l ${{ github.workspace }}/hdf5R
+
+ - name: Uncompress hdf5 reference binary (Linux)
+ run: |
+ cd "${{ github.workspace }}/hdf5R"
+ tar -zxvf ${{ github.workspace }}/hdf5R/hdf5/HDF5-${{ steps.convert-hdf5lib-refname.outputs.HDF5R_DOTS }}-Linux.tar.gz --strip-components 1
+
+ - name: List files for the HDFR space (Linux)
+ run: |
+ ls -l ${{ github.workspace }}/hdf5R
+ ls -l ${{ github.workspace }}/hdf5R/HDF_Group/HDF5
+
+ - name: set hdf5lib reference name
+ id: set-hdf5lib-refname
+ run: |
+ HDF5RDIR=${{ github.workspace }}/hdf5R/HDF_Group/HDF5/
+ FILE_NAME_HDF5R=$(ls ${{ github.workspace }}/hdf5R/HDF_Group/HDF5)
+ echo "HDF5R_ROOT=$HDF5RDIR$FILE_NAME_HDF5R" >> $GITHUB_OUTPUT
+ echo "HDF5R_VERS=$FILE_NAME_HDF5R" >> $GITHUB_OUTPUT
+
+ - name: List files for the lib spaces (Linux)
+ run: |
+ ls -l ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/lib
+ ls -l ${{ steps.set-hdf5lib-refname.outputs.HDF5R_ROOT }}/lib
+
+ - name: Run Java API report
+ run: |
+ japi-compliance-checker ${{ steps.set-hdf5lib-refname.outputs.HDF5R_ROOT }}/lib/jarhdf5-${{ steps.convert-hdf5lib-refname.outputs.HDF5R_DOTS }}.jar ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/lib/jarhdf5-${{ steps.set-hdf5lib-name.outputs.HDF5_VERS }}.jar
+
+ - name: Run ABI report
+ run: |
+ abi-dumper ${{ steps.set-hdf5lib-refname.outputs.HDF5R_ROOT }}/lib/libhdf5.so -o ABI-0.dump -public-headers ${{ steps.set-hdf5lib-refname.outputs.HDF5R_ROOT }}/include
+ abi-dumper ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/lib/libhdf5.so -o ABI-1.dump -public-headers ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/include
+ abi-compliance-checker -l ${{ inputs.file_base }} -old ABI-0.dump -new ABI-1.dump
+ continue-on-error: true
+
+ - name: Run hl ABI report
+ run: |
+ abi-dumper ${{ steps.set-hdf5lib-refname.outputs.HDF5R_ROOT }}/lib/libhdf5_hl.so -o ABI-2.dump -public-headers ${{ steps.set-hdf5lib-refname.outputs.HDF5R_ROOT }}/include
+ abi-dumper ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/lib/libhdf5_hl.so -o ABI-3.dump -public-headers ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/include
+ abi-compliance-checker -l ${{ inputs.file_base }}_hl -old ABI-2.dump -new ABI-3.dump
+ continue-on-error: true
+
+ - name: Run cpp ABI report
+ run: |
+ abi-dumper ${{ steps.set-hdf5lib-refname.outputs.HDF5R_ROOT }}/lib/libhdf5_cpp.so -o ABI-4.dump -public-headers ${{ steps.set-hdf5lib-refname.outputs.HDF5R_ROOT }}/include
+ abi-dumper ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/lib/libhdf5_cpp.so -o ABI-5.dump -public-headers ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/include
+ abi-compliance-checker -l ${{ inputs.file_base }}_cpp -old ABI-4.dump -new ABI-5.dump
+ continue-on-error: true
+
+ - name: Run hl_cpp ABI report
+ run: |
+ abi-dumper ${{ steps.set-hdf5lib-refname.outputs.HDF5R_ROOT }}/lib/libhdf5_hl_cpp.so -o ABI-6.dump -public-headers ${{ steps.set-hdf5lib-refname.outputs.HDF5R_ROOT }}/include
+ abi-dumper ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/lib/libhdf5_hl_cpp.so -o ABI-7.dump -public-headers ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/include
+ abi-compliance-checker -l ${{ inputs.file_base }}_hl_cpp -old ABI-6.dump -new ABI-7.dump
+ continue-on-error: true
+
+ - name: Copy ABI reports
+ run: |
+ cp compat_reports/jarhdf5-/${{ steps.set-hdf5lib-refname.outputs.HDF5R_VERS }}_to_${{ steps.set-hdf5lib-name.outputs.HDF5_VERS }}/compat_report.html ${{ inputs.file_base }}-java_compat_report.html
+ ls -l compat_reports/${{ inputs.file_base }}/X_to_Y
+ cp compat_reports/${{ inputs.file_base }}/X_to_Y/compat_report.html ${{ inputs.file_base }}-hdf5_compat_report.html
+ ls -l compat_reports/${{ inputs.file_base }}_hl/X_to_Y
+ cp compat_reports/${{ inputs.file_base }}_hl/X_to_Y/compat_report.html ${{ inputs.file_base }}-hdf5_hl_compat_report.html
+ ls -l compat_reports/${{ inputs.file_base }}_cpp/X_to_Y
+ cp compat_reports/${{ inputs.file_base }}_cpp/X_to_Y/compat_report.html ${{ inputs.file_base }}-hdf5_cpp_compat_report.html
+# ls -l compat_reports/${{ inputs.file_base }}_hl_cpp/X_to_Y
+# cp compat_reports/${{ inputs.file_base }}_hl_cpp/X_to_Y/compat_report.html ${{ inputs.file_base }}-hdf5_hl_cpp_compat_report.html
+
+ - name: List files for the report spaces (Linux)
+ run: |
+ ls -l compat_reports
+ ls -l *.html
+
+ - name: Save output as artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: abi-reports
+ path: |
+ ${{ inputs.file_base }}-hdf5_compat_report.html
+ ${{ inputs.file_base }}-hdf5_hl_compat_report.html
+ ${{ inputs.file_base }}-hdf5_cpp_compat_report.html
+ ${{ inputs.file_base }}-java_compat_report.html
diff --git a/.github/workflows/autotools.yml b/.github/workflows/autotools.yml
index 68d5a2f..e61c14b 100644
--- a/.github/workflows/autotools.yml
+++ b/.github/workflows/autotools.yml
@@ -17,7 +17,19 @@ jobs:
call-parallel-special-autotools:
name: "Autotools Parallel Special Workflows"
+ uses: ./.github/workflows/main-auto-par-spc.yml
+
+ call-debug-parallel-autotools:
+ name: "Autotools Parallel Workflows"
uses: ./.github/workflows/main-auto-par.yml
+ with:
+ build_mode: "debug"
+
+ call-release-parallel-autotools:
+ name: "Autotools Parallel Workflows"
+ uses: ./.github/workflows/main-auto-par.yml
+ with:
+ build_mode: "production"
call-debug-thread-autotools:
name: "Autotools Debug Thread-Safety Workflows"
diff --git a/.github/workflows/clang-format-fix.yml b/.github/workflows/clang-format-fix.yml
index 80befa2..a27db18 100644
--- a/.github/workflows/clang-format-fix.yml
+++ b/.github/workflows/clang-format-fix.yml
@@ -31,7 +31,7 @@ jobs:
inplace: True
style: file
exclude: './config ./hl/src/H5LTanalyze.c ./hl/src/H5LTparse.c ./hl/src/H5LTparse.h ./src/H5Epubgen.h ./src/H5Einit.h ./src/H5Eterm.h ./src/H5Edefin.h ./src/H5version.h ./src/H5overflow.h'
- - uses: EndBug/add-and-commit@1bad3abcf0d6ec49a5857d124b0bfb52dc7bb081 # v9.1.3
+ - uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9.1.4
with:
author_name: github-actions
author_email: 41898282+github-actions[bot]@users.noreply.github.com
diff --git a/.github/workflows/cmake-bintest.yml b/.github/workflows/cmake-bintest.yml
new file mode 100644
index 0000000..3306c0a
--- /dev/null
+++ b/.github/workflows/cmake-bintest.yml
@@ -0,0 +1,218 @@
+name: hdf5 1.14 examples bintest runs
+
+# Controls when the action will run. Triggers the workflow on a schedule
+on:
+ workflow_call:
+ inputs:
+ build_mode:
+ description: "release vs. debug build"
+ required: true
+ type: string
+
+permissions:
+ contents: read
+
+# A workflow run is made up of one or more jobs that can run sequentially or
+# in parallel
+jobs:
+ test_binary_win:
+ # Windows w/ MSVC + CMake
+ #
+ name: "Windows MSVC Binary Test"
+ runs-on: windows-latest
+ steps:
+ - name: Install Dependencies (Windows)
+ run: choco install ninja
+
+ - name: Set up JDK 19
+ uses: actions/setup-java@v4
+ with:
+ java-version: '19'
+ distribution: 'temurin'
+
+ - name: Enable Developer Command Prompt
+ uses: ilammy/msvc-dev-cmd@v1.13.0
+
+ # Get files created by cmake-ctest script
+ - name: Get published binary (Windows)
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
+ with:
+ name: zip-vs2022_cl-${{ inputs.build_mode }}-binary
+ path: ${{ github.workspace }}/hdf5
+
+ - name: Uncompress hdf5 binary (Win)
+ working-directory: ${{ github.workspace }}/hdf5
+ run: 7z x HDF5-*-win64.zip
+ shell: bash
+
+ - name: List files for the space (Win)
+ run: |
+ ls -l ${{ github.workspace }}
+ ls -l ${{ github.workspace }}/hdf5
+
+ - name: create hdf5 location (Win)
+ working-directory: ${{ github.workspace }}/hdf5
+ run: |
+ New-Item -Path "${{ github.workspace }}/HDF_Group/HDF5" -ItemType Directory
+ Copy-Item -Path "${{ github.workspace }}/hdf5/HDF*/*" -Destination "${{ github.workspace }}/HDF_Group/HDF5" -Recurse
+ shell: pwsh
+
+ - name: List files for the space (Win)
+ run: ls -l ${{ github.workspace }}/HDF_Group/HDF5
+
+ - name: set hdf5lib name
+ id: set-hdf5lib-name
+ run: |
+ HDF5DIR="${{ github.workspace }}/HDF_Group/HDF5"
+ echo "HDF5_ROOT=$HDF5DIR$FILE_NAME_HDF5" >> $GITHUB_OUTPUT
+ echo "HDF5_PLUGIN_PATH=$HDF5_ROOT/lib/plugin" >> $GITHUB_OUTPUT
+ shell: bash
+
+ - name: List files for the binaries (Win)
+ run: |
+ ls -l ${{ github.workspace }}/HDF_Group/HDF5
+
+ - name: using powershell
+ shell: pwsh
+ run: Get-Location
+
+ - name: List files for the space (Windows)
+ run: |
+ Get-ChildItem -Path ${{ github.workspace }}
+ Get-ChildItem -Path ${{ runner.workspace }}
+ shell: pwsh
+
+ - name: Run ctest (Windows)
+ env:
+ HDF5_ROOT: ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}
+ HDF5_PLUGIN_PATH: ${{ steps.set-hdf5lib-name.outputs.HDF5_PLUGIN_PATH }}
+ run: |
+ cd "${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/HDF5Examples"
+ cmake --workflow --preset=ci-StdShar-MSVC --fresh
+ shell: bash
+
+ test_binary_linux:
+ # Linux (Ubuntu) w/ gcc + CMake
+ #
+ name: "Ubuntu gcc Binary Test"
+ runs-on: ubuntu-latest
+ steps:
+ - name: Install CMake Dependencies (Linux)
+ run: sudo apt-get install ninja-build doxygen graphviz
+
+ - name: Set up JDK 19
+ uses: actions/setup-java@v4
+ with:
+ java-version: '19'
+ distribution: 'temurin'
+
+ - name: Get published binary (Linux)
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
+ with:
+ name: tgz-ubuntu-2204_gcc-${{ inputs.build_mode }}-binary
+ path: ${{ github.workspace }}
+
+ - name: Uncompress hdf5 binary (Linux)
+ run: |
+ cd "${{ github.workspace }}"
+ tar -zxvf ${{ github.workspace }}/HDF5-*-Linux.tar.gz --strip-components 1
+
+ - name: set hdf5lib name
+ id: set-hdf5lib-name
+ run: |
+ HDF5DIR=${{ github.workspace }}/HDF_Group/HDF5/
+ FILE_NAME_HDF5=$(ls ${{ github.workspace }}/HDF_Group/HDF5)
+ echo "HDF5_ROOT=$HDF5DIR$FILE_NAME_HDF5" >> $GITHUB_OUTPUT
+ echo "HDF5_PLUGIN_PATH=$HDF5_ROOT/lib/plugin" >> $GITHUB_OUTPUT
+
+ - name: List files for the binaries (Linux)
+ run: |
+ ls -l ${{ github.workspace }}/HDF_Group/HDF5
+
+ - name: Set file base name (Linux)
+ id: set-file-base
+ run: |
+ FILE_NAME_BASE=$(echo "${{ inputs.file_base }}")
+ echo "FILE_BASE=$FILE_NAME_BASE" >> $GITHUB_OUTPUT
+
+ - name: List files for the space (Linux)
+ run: |
+ ls -l ${{ github.workspace }}
+ ls ${{ runner.workspace }}
+
+ - name: Run ctest (Linux)
+ env:
+ HDF5_ROOT: ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}
+ HDF5_PLUGIN_PATH: ${{ steps.set-hdf5lib-name.outputs.HDF5_PLUGIN_PATH }}
+ run: |
+ cd "${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/share/HDF5Examples"
+ cmake --workflow --preset=ci-StdShar-GNUC --fresh
+ shell: bash
+
+ test_binary_mac:
+ # MacOS w/ Clang + CMake
+ #
+ name: "MacOS Clang Binary Test"
+ runs-on: macos-13
+ steps:
+ - name: Install Dependencies (MacOS)
+ run: brew install ninja doxygen
+
+ - name: Set up JDK 19
+ uses: actions/setup-java@v4
+ with:
+ java-version: '19'
+ distribution: 'temurin'
+
+ - name: Get published binary (MacOS)
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
+ with:
+ name: tgz-osx12-${{ inputs.build_mode }}-binary
+ path: ${{ github.workspace }}
+
+ - name: Uncompress hdf5 binary (MacOS)
+ run: |
+ cd "${{ github.workspace }}"
+ tar -zxvf ${{ github.workspace }}/HDF5-*-Darwin.tar.gz --strip-components 1
+
+ - name: set hdf5lib name
+ id: set-hdf5lib-name
+ run: |
+ HDF5DIR=${{ github.workspace }}/HDF_Group/HDF5/
+ FILE_NAME_HDF5=$(ls ${{ github.workspace }}/HDF_Group/HDF5)
+ echo "HDF5_ROOT=$HDF5DIR$FILE_NAME_HDF5" >> $GITHUB_OUTPUT
+ echo "HDF5_PLUGIN_PATH=$HDF5_ROOT/lib/plugin" >> $GITHUB_OUTPUT
+
+ - name: List files for the binaries (MacOS)
+ run: |
+ ls -l ${{ github.workspace }}/HDF_Group/HDF5
+
+ - name: Set file base name (MacOS)
+ id: set-file-base
+ run: |
+ FILE_NAME_BASE=$(echo "${{ inputs.file_base }}")
+ echo "FILE_BASE=$FILE_NAME_BASE" >> $GITHUB_OUTPUT
+
+ - name: List files for the space (MacOS)
+ run: |
+ ls ${{ github.workspace }}
+ ls ${{ runner.workspace }}
+
+ # symlinks the compiler executables to a common location
+ - name: Setup GNU Fortran
+ uses: fortran-lang/setup-fortran@v1
+ id: setup-fortran
+ with:
+ compiler: gcc
+ version: 12
+
+ - name: Run ctest (MacOS)
+ id: run-ctest
+ env:
+ HDF5_ROOT: ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}
+ HDF5_PLUGIN_PATH: ${{ steps.set-hdf5lib-name.outputs.HDF5_PLUGIN_PATH }}
+ run: |
+ cd "${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}/share/HDF5Examples"
+ cmake --workflow --preset=ci-StdShar-OSX-Clang --fresh
+ shell: bash
+
diff --git a/.github/workflows/cmake-ctest.yml b/.github/workflows/cmake-ctest.yml
index b4302cc..54642a4 100644
--- a/.github/workflows/cmake-ctest.yml
+++ b/.github/workflows/cmake-ctest.yml
@@ -8,6 +8,10 @@ on:
description: "The common base name of the source tarballs"
required: true
type: string
+ preset_name:
+ description: "The common base name of the preset configuration name to control the build"
+ required: true
+ type: string
permissions:
contents: read
@@ -24,6 +28,11 @@ jobs:
- name: Install Dependencies (Windows)
run: choco install ninja
+ - name: Install Dependencies
+ uses: ssciwr/doxygen-install@v1
+ with:
+ version: "1.10.0"
+
- name: Enable Developer Command Prompt
uses: ilammy/msvc-dev-cmd@v1.13.0
@@ -36,7 +45,7 @@ jobs:
# Get files created by release script
- name: Get zip-tarball (Windows)
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: zip-tarball
path: ${{ github.workspace }}
@@ -59,7 +68,7 @@ jobs:
- name: Run ctest (Windows)
run: |
cd "${{ runner.workspace }}/hdf5/hdfsrc"
- cmake --workflow --preset=ci-StdShar-MSVC --fresh
+ cmake --workflow --preset=${{ inputs.preset_name }}-MSVC --fresh
shell: bash
- name: Publish binary (Windows)
@@ -83,7 +92,7 @@ jobs:
# Save files created by ctest script
- name: Save published binary (Windows)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: zip-vs2022_cl-binary
path: ${{ runner.workspace }}/build114/${{ steps.set-file-base.outputs.FILE_BASE }}-win-vs2022_cl.zip
@@ -96,7 +105,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install CMake Dependencies (Linux)
- run: sudo apt-get install ninja-build doxygen graphviz
+ run: sudo apt-get install ninja-build graphviz
+
+ - name: Install Dependencies
+ uses: ssciwr/doxygen-install@v1
+ with:
+ version: "1.10.0"
- name: Set file base name (Linux)
id: set-file-base
@@ -106,7 +120,7 @@ jobs:
# Get files created by release script
- name: Get tgz-tarball (Linux)
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: tgz-tarball
path: ${{ github.workspace }}
@@ -122,7 +136,7 @@ jobs:
- name: Run ctest (Linux)
run: |
cd "${{ runner.workspace }}/hdf5/hdfsrc"
- cmake --workflow --preset=ci-StdShar-GNUC --fresh
+ cmake --workflow --preset=${{ inputs.preset_name }}-GNUC --fresh
shell: bash
- name: Publish binary (Linux)
@@ -145,7 +159,7 @@ jobs:
# Save files created by ctest script
- name: Save published binary (Linux)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: tgz-ubuntu-2204_gcc-binary
path: ${{ runner.workspace }}/build114/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.tar.gz
@@ -153,7 +167,7 @@ jobs:
# Save doxygen files created by ctest script
- name: Save published doxygen (Linux)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: docs-doxygen
path: ${{ runner.workspace }}/hdf5/build114/ci-StdShar-GNUC/hdf5lib_docs/html
@@ -163,10 +177,15 @@ jobs:
# MacOS w/ Clang + CMake
#
name: "MacOS Clang CMake"
- runs-on: macos-11
+ runs-on: macos-13
steps:
- name: Install Dependencies (MacOS)
- run: brew install ninja doxygen
+ run: brew install ninja
+
+ - name: Install Dependencies
+ uses: ssciwr/doxygen-install@v1
+ with:
+ version: "1.10.0"
- name: Set file base name (MacOS)
id: set-file-base
@@ -176,7 +195,7 @@ jobs:
# Get files created by release script
- name: Get tgz-tarball (MacOS)
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: tgz-tarball
path: ${{ github.workspace }}
@@ -201,12 +220,13 @@ jobs:
id: run-ctest
run: |
cd "${{ runner.workspace }}/hdf5/hdfsrc"
- cmake --workflow --preset=ci-StdShar-Clang --fresh
+ cmake --workflow --preset=${{ inputs.preset_name }}-OSX-Clang --fresh
shell: bash
- name: Publish binary (MacOS)
id: publish-ctest-binary
run: |
+
mkdir "${{ runner.workspace }}/build114"
mkdir "${{ runner.workspace }}/build114/hdf5"
cp ${{ runner.workspace }}/hdf5/hdfsrc/COPYING ${{ runner.workspace }}/build114/hdf5
@@ -224,12 +244,76 @@ jobs:
# Save files created by ctest script
- name: Save published binary (MacOS)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: tgz-osx12-binary
path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-osx12.tar.gz
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
+ build_and_test_S3_linux:
+ # Linux S3 (Ubuntu) w/ gcc + CMake
+ #
+ name: "Ubuntu gcc CMake S3"
+ runs-on: ubuntu-latest
+ steps:
+ - name: Install CMake Dependencies (Linux S3)
+ run: |
+ sudo apt-get install ninja-build doxygen graphviz
+ sudo apt install libssl3 libssl-dev libcurl4 libcurl4-openssl-dev
+
+ - name: Set file base name (Linux S3)
+ id: set-file-base
+ run: |
+ FILE_NAME_BASE=$(echo "${{ inputs.file_base }}")
+ echo "FILE_BASE=$FILE_NAME_BASE" >> $GITHUB_OUTPUT
+
+ # Get files created by release script
+ - name: Get tgz-tarball (Linux S3)
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
+ with:
+ name: tgz-tarball
+ path: ${{ github.workspace }}
+
+ - name: List files for the space (Linux S3)
+ run: |
+ ls -l ${{ github.workspace }}
+ ls ${{ runner.workspace }}
+
+ - name: Uncompress source (Linux S3)
+ run: tar -zxvf ${{ github.workspace }}/${{ steps.set-file-base.outputs.FILE_BASE }}.tar.gz
+
+ - name: Run ctest (Linux S3)
+ run: |
+ cd "${{ runner.workspace }}/hdf5/hdfsrc"
+ cmake --workflow --preset=${{ inputs.preset_name }}-GNUC-S3 --fresh
+ shell: bash
+
+ - name: Publish binary (Linux S3)
+ id: publish-ctest-binary
+ run: |
+ mkdir "${{ runner.workspace }}/build114"
+ mkdir "${{ runner.workspace }}/build114/hdf5"
+ cp ${{ runner.workspace }}/hdf5/hdfsrc/COPYING ${{ runner.workspace }}/build114/hdf5
+ cp ${{ runner.workspace }}/hdf5/hdfsrc/COPYING_LBNL_HDF5 ${{ runner.workspace }}/build114/hdf5
+ cp ${{ runner.workspace }}/hdf5/hdfsrc/README.md ${{ runner.workspace }}/build/hdf5114
+ cp ${{ runner.workspace }}/hdf5/build114/${{ inputs.preset_name }}-GNUC-S3/*.tar.gz ${{ runner.workspace }}/build114/hdf5
+ cd "${{ runner.workspace }}/build114"
+ tar -zcvf ${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc_s3.tar.gz hdf5
+ shell: bash
+
+ - name: List files in the space (Linux S3)
+ run: |
+ ls ${{ github.workspace }}
+ ls -l ${{ runner.workspace }}
+
+ # Save files created by ctest script
+ - name: Save published binary (Linux S3)
+ uses: actions/upload-artifact@v4
+ with:
+ name: tgz-ubuntu-2204_gcc_s3-binary
+ path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc_s3.tar.gz
+ if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
+
####### intel builds
build_and_test_win_intel:
# Windows w/ OneAPI + CMake
@@ -259,7 +343,7 @@ jobs:
# Get files created by release script
- name: Get zip-tarball (Windows_intel)
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: zip-tarball
path: ${{ github.workspace }}
@@ -286,7 +370,7 @@ jobs:
CXX: ${{ steps.setup-fortran.outputs.cxx }}
run: |
cd "${{ runner.workspace }}/hdf5/hdfsrc"
- cmake --workflow --preset=ci-StdShar-Intel --fresh
+ cmake --workflow --preset=${{ inputs.preset_name }}-win-Intel --fresh
shell: pwsh
- name: Publish binary (Windows_intel)
@@ -297,7 +381,7 @@ jobs:
Copy-Item -Path ${{ runner.workspace }}/hdf5/hdfsrc/COPYING -Destination ${{ runner.workspace }}/build/hdf5/
Copy-Item -Path ${{ runner.workspace }}/hdf5/hdfsrc/COPYING_LBNL_HDF5 -Destination ${{ runner.workspace }}/build/hdf5/
Copy-Item -Path ${{ runner.workspace }}/hdf5/hdfsrc/README.md -Destination ${{ runner.workspace }}/build/hdf5/
- Copy-Item -Path ${{ runner.workspace }}/hdf5/build/ci-StdShar-Intel/* -Destination ${{ runner.workspace }}/build/hdf5/ -Include *.zip
+ Copy-Item -Path ${{ runner.workspace }}/hdf5/build/${{ inputs.preset_name }}-Intel/* -Destination ${{ runner.workspace }}/build/hdf5/ -Include *.zip
cd "${{ runner.workspace }}/build"
7z a -tzip ${{ steps.set-file-base.outputs.FILE_BASE }}-win-vs2022_intel.zip hdf5
shell: pwsh
@@ -310,7 +394,7 @@ jobs:
# Save files created by ctest script
- name: Save published binary (Windows_intel)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: zip-vs2022_intel-binary
path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-win-vs2022_intel.zip
@@ -340,7 +424,7 @@ jobs:
# Get files created by release script
- name: Get tgz-tarball (Linux_intel)
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: tgz-tarball
path: ${{ github.workspace }}
@@ -360,7 +444,7 @@ jobs:
CXX: ${{ steps.setup-fortran.outputs.cxx }}
run: |
cd "${{ runner.workspace }}/hdf5/hdfsrc"
- cmake --workflow --preset=ci-StdShar-Intel --fresh
+ cmake --workflow --preset=${{ inputs.preset_name }}-Intel --fresh
shell: bash
- name: Publish binary (Linux_intel)
@@ -371,7 +455,7 @@ jobs:
cp ${{ runner.workspace }}/hdf5/hdfsrc/COPYING ${{ runner.workspace }}/build/hdf5
cp ${{ runner.workspace }}/hdf5/hdfsrc/COPYING_LBNL_HDF5 ${{ runner.workspace }}/build/hdf5
cp ${{ runner.workspace }}/hdf5/hdfsrc/README.md ${{ runner.workspace }}/build/hdf5
- cp ${{ runner.workspace }}/hdf5/build/ci-StdShar-Intel/*.tar.gz ${{ runner.workspace }}/build/hdf5
+ cp ${{ runner.workspace }}/hdf5/build/${{ inputs.preset_name }}-Intel/*.tar.gz ${{ runner.workspace }}/build/hdf5
cd "${{ runner.workspace }}/build"
tar -zcvf ${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_intel.tar.gz hdf5
shell: bash
@@ -383,7 +467,7 @@ jobs:
# Save files created by ctest script
- name: Save published binary (Linux_intel)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: tgz-ubuntu-2204_intel-binary
path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_intel.tar.gz
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index 11a010c..cca783a 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -19,30 +19,49 @@ jobs:
name: "CMake Debug Thread-Safety Workflows"
uses: ./.github/workflows/main-cmake.yml
with:
- thread_safety: true
+ thread_safety: "TS"
build_mode: "Debug"
call-release-thread-cmake:
name: "CMake Release Thread-Safety Workflows"
uses: ./.github/workflows/main-cmake.yml
with:
- thread_safety: true
+ thread_safety: "TS"
build_mode: "Release"
call-debug-cmake:
name: "CMake Debug Workflows"
uses: ./.github/workflows/main-cmake.yml
with:
- thread_safety: false
+ thread_safety: ""
build_mode: "Debug"
call-release-cmake:
name: "CMake Release Workflows"
uses: ./.github/workflows/main-cmake.yml
with:
- thread_safety: false
+ thread_safety: ""
build_mode: "Release"
+ call-release-bintest:
+ name: "CMake Test Release Binaries"
+ needs: call-release-cmake
+ uses: ./.github/workflows/cmake-bintest.yml
+ with:
+ build_mode: "Release"
+
+ call-release-par:
+ name: "CMake Parallel Release Workflows"
+ uses: ./.github/workflows/main-cmake-par.yml
+ with:
+ build_mode: "Release"
+
+ call-debug-par:
+ name: "CMake Parallel Debug Workflows"
+ uses: ./.github/workflows/main-cmake-par.yml
+ with:
+ build_mode: "Debug"
+
call-release-cmake-intel:
name: "CMake Intel Workflows"
uses: ./.github/workflows/intel-cmake.yml
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index cb68361..1477b14 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -12,6 +12,3 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1
- uses: codespell-project/actions-codespell@master
- with:
- skip: ./.github/workflows/codespell.yml,./bin/trace,./hl/tools/h5watch/h5watch.c,./tools/test/h5jam/tellub.c,./config/sanitizer/LICENSE,./config/sanitizer/sanitizers.cmake,./tools/test/h5repack/testfiles/*.dat,./test/API/driver,./configure,./bin/ltmain.sh,./bin/depcomp,./bin/config.guess,./bin/config.sub,./autom4te.cache,./m4/libtool.m4,./c++/src/*.html,./HDF5Examples/depcomp
- ignore_words_list: ot,isnt,inout,nd,parms,parm,ba,offsetP,ser,ois,had,fiter,fo,clude,refere,minnum,offsetp,creat,ans:,eiter,lastr,ans,isn't,ifset,sur,trun,dne,tthe,hda,filname,te,htmp,ake,gord,numer,ro,oce,msdos
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
diff --git a/.github/workflows/linux-auto-aocc-ompi.yml b/.github/workflows/linux-auto-aocc-ompi.yml
index d39ac40..c535bf7 100644
--- a/.github/workflows/linux-auto-aocc-ompi.yml
+++ b/.github/workflows/linux-auto-aocc-ompi.yml
@@ -44,7 +44,7 @@ jobs:
clang -v
- name: Cache OpenMPI 4.1.5 installation
id: cache-openmpi-4_1_5
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: /home/runner/work/hdf5/hdf5/openmpi-4.1.5-install
key: ${{ runner.os }}-${{ runner.arch }}-openmpi-4_1_5-cache
diff --git a/.github/workflows/main-auto-par-spc.yml b/.github/workflows/main-auto-par-spc.yml
new file mode 100644
index 0000000..5047685
--- /dev/null
+++ b/.github/workflows/main-auto-par-spc.yml
@@ -0,0 +1,137 @@
+name: hdf5 1.14 autotools parallel special CI
+
+# Controls when the action will run. Triggers the workflow on a call
+on:
+ workflow_call:
+
+permissions:
+ contents: read
+
+# A workflow run is made up of one or more jobs that can run sequentially or
+# in parallel. We just have one job, but the matrix items defined below will
+# run in parallel.
+jobs:
+ #
+ # SPECIAL AUTOTOOLS BUILDS
+ #
+ # These do not run tests and are not built into the matrix and instead
+ # become NEW configs as their name would clobber one of the matrix
+ # names (so make sure the names are UNIQUE).
+ #
+
+ build_parallel_debug_werror:
+ name: "gcc DBG parallel -Werror (build only)"
+ runs-on: ubuntu-latest
+ steps:
+ # SETUP
+ # Only CMake need ninja-build, but we just install it unilaterally
+ # libssl, etc. are needed for the ros3 VFD
+ - name: Install Linux Dependencies
+ run: |
+ sudo apt update
+ sudo apt-get install ninja-build doxygen graphviz
+ sudo apt install libssl3 libssl-dev libcurl4 libcurl4-openssl-dev
+ sudo apt install gcc-12 g++-12 gfortran-12
+ sudo apt install automake autoconf libtool libtool-bin
+ sudo apt install libaec0 libaec-dev
+ sudo apt install openmpi-bin openmpi-common mpi-default-dev
+ echo "CC=mpicc" >> $GITHUB_ENV
+ echo "FC=mpif90" >> $GITHUB_ENV
+
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
+ - name: Get Sources
+ uses: actions/checkout@v4.1.1
+
+ # AUTOTOOLS CONFIGURE
+ - name: Autotools Configure
+ run: |
+ sh ./autogen.sh
+ mkdir "${{ runner.workspace }}/build"
+ cd "${{ runner.workspace }}/build"
+ CFLAGS=-Werror $GITHUB_WORKSPACE/configure \
+ --enable-build-mode=debug \
+ --enable-deprecated-symbols \
+ --with-default-api-version=v114 \
+ --enable-shared \
+ --enable-parallel \
+ --enable-subfiling-vfd \
+ --disable-cxx \
+ --disable-fortran \
+ --disable-java \
+ --disable-mirror-vfd \
+ --enable-direct-vfd \
+ --disable-ros3-vfd \
+ shell: bash
+
+ # BUILD
+ - name: Autotools Build
+ run: make -j3
+ working-directory: ${{ runner.workspace }}/build
+
+ # INSTALL (note that this runs even when we don't run the tests)
+ - name: Autotools Install
+ run: make install
+ working-directory: ${{ runner.workspace }}/build
+
+ - name: Autotools Verify Install
+ run: make check-install
+ working-directory: ${{ runner.workspace }}/build
+
+ build_parallel_release_werror:
+ name: "gcc REL parallel -Werror (build only)"
+ runs-on: ubuntu-latest
+ steps:
+ # SETUP
+ # Only CMake need ninja-build, but we just install it unilaterally
+ # libssl, etc. are needed for the ros3 VFD
+ - name: Install Linux Dependencies
+ run: |
+ sudo apt update
+ sudo apt-get install ninja-build doxygen graphviz
+ sudo apt install libssl3 libssl-dev libcurl4 libcurl4-openssl-dev
+ sudo apt install gcc-12 g++-12 gfortran-12
+ sudo apt install automake autoconf libtool libtool-bin
+ sudo apt install libaec0 libaec-dev
+ sudo apt install openmpi-bin openmpi-common mpi-default-dev
+ echo "CC=mpicc" >> $GITHUB_ENV
+ echo "FC=mpif90" >> $GITHUB_ENV
+
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
+ - name: Get Sources
+ uses: actions/checkout@v4.1.1
+
+ # AUTOTOOLS CONFIGURE
+ - name: Autotools Configure
+ run: |
+ sh ./autogen.sh
+ mkdir "${{ runner.workspace }}/build"
+ cd "${{ runner.workspace }}/build"
+ CFLAGS=-Werror $GITHUB_WORKSPACE/configure \
+ --enable-build-mode=production \
+ --enable-deprecated-symbols \
+ --with-default-api-version=v114 \
+ --enable-shared \
+ --enable-parallel \
+ --enable-subfiling-vfd \
+ --disable-cxx \
+ --disable-fortran \
+ --disable-java \
+ --disable-mirror-vfd \
+ --enable-direct-vfd \
+ --disable-ros3-vfd \
+ shell: bash
+
+ # BUILD
+ - name: Autotools Build
+ run: make -j3
+ working-directory: ${{ runner.workspace }}/build
+
+ # INSTALL (note that this runs even when we don't run the tests)
+ - name: Autotools Install
+ run: make install
+ working-directory: ${{ runner.workspace }}/build
+
+ - name: Autotools Verify Install
+ run: make check-install
+ working-directory: ${{ runner.workspace }}/build
+
diff --git a/.github/workflows/main-auto-par.yml b/.github/workflows/main-auto-par.yml
index 63f5992..913ff52 100644
--- a/.github/workflows/main-auto-par.yml
+++ b/.github/workflows/main-auto-par.yml
@@ -3,6 +3,11 @@ name: hdf5 1.14 autotools CI
# Controls when the action will run. Triggers the workflow on a call
on:
workflow_call:
+ inputs:
+ build_mode:
+ description: "release vs. debug build"
+ required: true
+ type: string
permissions:
contents: read
@@ -12,78 +17,23 @@ permissions:
# run in parallel.
jobs:
#
- # SPECIAL AUTOTOOLS BUILDS
- #
- # These do not run tests and are not built into the matrix and instead
- # become NEW configs as their name would clobber one of the matrix
- # names (so make sure the names are UNIQUE).
+ # The GitHub runners are inadequate for running parallel HDF5 tests,
+ # so we catch most issues in daily testing. What we have here is just
+ # a compile check to make sure nothing obvious is broken.
+ # A workflow that builds the library
+ # Parallel Linux (Ubuntu) w/ gcc + Autotools
#
+ Autotools_build_parallel:
+ name: "Parallel GCC-${{ inputs.build_mode }}"
+ # Don't run the action if the commit message says to skip CI
+ if: "!contains(github.event.head_commit.message, 'skip-ci')"
- build_parallel_debug_werror:
- name: "gcc DBG parallel -Werror (build only)"
+ # The type of runner that the job will run on
runs-on: ubuntu-latest
- steps:
- # SETUP
- # Only CMake need ninja-build, but we just install it unilaterally
- # libssl, etc. are needed for the ros3 VFD
- - name: Install Linux Dependencies
- run: |
- sudo apt update
- sudo apt-get install ninja-build doxygen graphviz
- sudo apt install libssl3 libssl-dev libcurl4 libcurl4-openssl-dev
- sudo apt install gcc-12 g++-12 gfortran-12
- sudo apt install automake autoconf libtool libtool-bin
- sudo apt install libaec0 libaec-dev
- sudo apt install openmpi-bin openmpi-common mpi-default-dev
- echo "CC=mpicc" >> $GITHUB_ENV
- echo "FC=mpif90" >> $GITHUB_ENV
-
- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- - name: Get Sources
- uses: actions/checkout@v4.1.1
- # AUTOTOOLS CONFIGURE
- - name: Autotools Configure
- run: |
- sh ./autogen.sh
- mkdir "${{ runner.workspace }}/build"
- cd "${{ runner.workspace }}/build"
- CFLAGS=-Werror $GITHUB_WORKSPACE/configure \
- --enable-build-mode=debug \
- --enable-deprecated-symbols \
- --with-default-api-version=v114 \
- --enable-shared \
- --enable-parallel \
- --enable-subfiling-vfd \
- --disable-cxx \
- --disable-fortran \
- --disable-java \
- --disable-mirror-vfd \
- --enable-direct-vfd \
- --disable-ros3-vfd \
- shell: bash
-
- # BUILD
- - name: Autotools Build
- run: make -j3
- working-directory: ${{ runner.workspace }}/build
-
- # INSTALL (note that this runs even when we don't run the tests)
- - name: Autotools Install
- run: make install
- working-directory: ${{ runner.workspace }}/build
-
- - name: Autotools Verify Install
- run: make check-install
- working-directory: ${{ runner.workspace }}/build
-
- build_parallel_release_werror:
- name: "gcc REL parallel -Werror (build only)"
- runs-on: ubuntu-latest
+ # Steps represent a sequence of tasks that will be executed as part of the job
steps:
# SETUP
- # Only CMake need ninja-build, but we just install it unilaterally
- # libssl, etc. are needed for the ros3 VFD
- name: Install Linux Dependencies
run: |
sudo apt update
@@ -106,32 +56,22 @@ jobs:
sh ./autogen.sh
mkdir "${{ runner.workspace }}/build"
cd "${{ runner.workspace }}/build"
- CFLAGS=-Werror $GITHUB_WORKSPACE/configure \
- --enable-build-mode=production \
+ CC=mpicc $GITHUB_WORKSPACE/configure \
+ --enable-build-mode=${{ inputs.build_mode }} \
--enable-deprecated-symbols \
--with-default-api-version=v114 \
--enable-shared \
--enable-parallel \
- --enable-subfiling-vfd \
--disable-cxx \
- --disable-fortran \
+ --enable-fortran \
--disable-java \
--disable-mirror-vfd \
- --enable-direct-vfd \
+ --disable-direct-vfd \
--disable-ros3-vfd \
+ --with-szlib=yes
shell: bash
# BUILD
- name: Autotools Build
run: make -j3
working-directory: ${{ runner.workspace }}/build
-
- # INSTALL (note that this runs even when we don't run the tests)
- - name: Autotools Install
- run: make install
- working-directory: ${{ runner.workspace }}/build
-
- - name: Autotools Verify Install
- run: make check-install
- working-directory: ${{ runner.workspace }}/build
-
diff --git a/.github/workflows/main-auto.yml b/.github/workflows/main-auto.yml
index 7147dd6..f8b806d 100644
--- a/.github/workflows/main-auto.yml
+++ b/.github/workflows/main-auto.yml
@@ -120,63 +120,3 @@ jobs:
- name: Autotools Verify Install
run: make check-install
working-directory: ${{ runner.workspace }}/build
-
- #
- # The GitHub runners are inadequate for running parallel HDF5 tests,
- # so we catch most issues in daily testing. What we have here is just
- # a compile check to make sure nothing obvious is broken.
- # A workflow that builds the library
- # Parallel Linux (Ubuntu) w/ gcc + Autotools
- #
- Autotools_build_parallel:
- name: "Parallel GCC-${{ inputs.build_mode }}-TS=${{ inputs.thread_safety }}d"
- # Don't run the action if the commit message says to skip CI
- if: "!contains(github.event.head_commit.message, 'skip-ci')"
-
- # The type of runner that the job will run on
- runs-on: ubuntu-latest
-
- # Steps represent a sequence of tasks that will be executed as part of the job
- steps:
- # SETUP
- - name: Install Linux Dependencies
- run: |
- sudo apt update
- sudo apt-get install ninja-build doxygen graphviz
- sudo apt install libssl3 libssl-dev libcurl4 libcurl4-openssl-dev
- sudo apt install gcc-12 g++-12 gfortran-12
- sudo apt install automake autoconf libtool libtool-bin
- sudo apt install libaec0 libaec-dev
- sudo apt install openmpi-bin openmpi-common mpi-default-dev
- echo "CC=mpicc" >> $GITHUB_ENV
- echo "FC=mpif90" >> $GITHUB_ENV
-
- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- - name: Get Sources
- uses: actions/checkout@v4.1.1
-
- # AUTOTOOLS CONFIGURE
- - name: Autotools Configure
- run: |
- sh ./autogen.sh
- mkdir "${{ runner.workspace }}/build"
- cd "${{ runner.workspace }}/build"
- CC=mpicc $GITHUB_WORKSPACE/configure \
- --enable-build-mode=${{ inputs.build_mode }} \
- --enable-deprecated-symbols \
- --with-default-api-version=v114 \
- --enable-shared \
- --enable-parallel \
- --disable-cxx \
- --enable-fortran \
- --disable-java \
- --disable-mirror-vfd \
- --disable-direct-vfd \
- --disable-ros3-vfd \
- --with-szlib=yes
- shell: bash
-
- # BUILD
- - name: Autotools Build
- run: make -j3
- working-directory: ${{ runner.workspace }}/build
diff --git a/.github/workflows/main-cmake-par.yml b/.github/workflows/main-cmake-par.yml
new file mode 100644
index 0000000..8b5adb8
--- /dev/null
+++ b/.github/workflows/main-cmake-par.yml
@@ -0,0 +1,77 @@
+name: hdf5 1.14 PAR CMake CI
+
+# Controls when the action will run. Triggers the workflow on a call
+on:
+ workflow_call:
+ inputs:
+ build_mode:
+ description: "release vs. debug build"
+ required: true
+ type: string
+
+permissions:
+ contents: read
+
+# A workflow run is made up of one or more jobs that can run sequentially or
+# in parallel. We just have one job, but the matrix items defined below will
+# run in parallel.
+jobs:
+ #
+ # The GitHub runners are inadequate for running parallel HDF5 tests,
+ # so we catch most issues in daily testing. What we have here is just
+ # a compile check to make sure nothing obvious is broken.
+ # A workflow that builds the library
+ # Parallel Linux (Ubuntu) w/ gcc + Autotools
+ #
+ CMake_build_parallel:
+ name: "Parallel GCC-${{ inputs.build_mode }}"
+ # Don't run the action if the commit message says to skip CI
+ if: ${{ inputs.thread_safety != 'TS' }}
+
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+
+ # Steps represent a sequence of tasks that will be executed as part of the job
+ steps:
+ # SETUP
+ - name: Install Linux Dependencies
+ run: |
+ sudo apt update
+ sudo apt-get install ninja-build doxygen graphviz
+ sudo apt install libssl3 libssl-dev libcurl4 libcurl4-openssl-dev
+ sudo apt install gcc-12 g++-12 gfortran-12
+ sudo apt install libaec0 libaec-dev
+ sudo apt install openmpi-bin openmpi-common mpi-default-dev
+ echo "CC=mpicc" >> $GITHUB_ENV
+ echo "FC=mpif90" >> $GITHUB_ENV
+
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
+ - name: Get Sources
+ uses: actions/checkout@v4.1.1
+
+ # CMAKE CONFIGURE
+ - name: CMake Configure
+ run: |
+ mkdir "${{ runner.workspace }}/build"
+ cd "${{ runner.workspace }}/build"
+ CC=mpicc cmake -C $GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \
+ -DCMAKE_BUILD_TYPE=${{ inputs.build_mode }} \
+ -DBUILD_SHARED_LIBS=ON \
+ -DHDF5_ENABLE_ALL_WARNINGS=ON \
+ -DHDF5_ENABLE_PARALLEL:BOOL=ON \
+ -DHDF5_BUILD_CPP_LIB:BOOL=OFF \
+ -DHDF5_BUILD_FORTRAN=ON \
+ -DHDF5_BUILD_JAVA=OFF \
+ -DLIBAEC_USE_LOCALCONTENT=OFF \
+ -DZLIB_USE_LOCALCONTENT=OFF \
+ -DHDF5_ENABLE_MIRROR_VFD:BOOL=OFF \
+ -DHDF5_ENABLE_DIRECT_VFD:BOOL=OFF \
+ -DHDF5_ENABLE_ROS3_VFD:BOOL=OFF \
+ -DHDF5_PACK_EXAMPLES:BOOL=ON \
+ $GITHUB_WORKSPACE
+ shell: bash
+
+ # BUILD
+ - name: CMake Build
+ run: cmake --build . --parallel 3 --config ${{ inputs.build_mode }}
+ working-directory: ${{ runner.workspace }}/build
diff --git a/.github/workflows/main-cmake.yml b/.github/workflows/main-cmake.yml
index 935c7eb..5d36b6a 100644
--- a/.github/workflows/main-cmake.yml
+++ b/.github/workflows/main-cmake.yml
@@ -5,9 +5,10 @@ on:
workflow_call:
inputs:
thread_safety:
- description: "thread-safety on/off"
+ description: "TS or empty"
required: true
- type: boolean
+ type: string
+
build_mode:
description: "release vs. debug build"
required: true
@@ -47,12 +48,12 @@ jobs:
#
# No Fortran, parallel, or VFDs that rely on POSIX things
- name: "Windows MSVC"
- os: windows-2022
+ os: windows-latest
toolchain: ""
cpp: ON
fortran: OFF
java: ON
- docs: OFF
+ docs: ON
libaecfc: ON
localaec: OFF
zlibfc: ON
@@ -82,7 +83,7 @@ jobs:
mirror_vfd: ON
direct_vfd: ON
ros3_vfd: ON
- toolchain: "config/toolchain/gcc.cmake"
+ toolchain: "-DCMAKE_TOOLCHAIN_FILE=config/toolchain/gcc.cmake"
generator: "-G Ninja"
run_tests: true
@@ -96,7 +97,7 @@ jobs:
cpp: ON
fortran: OFF
java: ON
- docs: OFF
+ docs: ON
libaecfc: ON
localaec: OFF
zlibfc: ON
@@ -105,14 +106,14 @@ jobs:
mirror_vfd: ON
direct_vfd: OFF
ros3_vfd: OFF
- toolchain: "config/toolchain/clang.cmake"
+ toolchain: "-DCMAKE_TOOLCHAIN_FILE=config/toolchain/clang.cmake"
generator: "-G Ninja"
run_tests: true
# Sets the job's name from the properties
- name: "${{ matrix.name }}-${{ inputs.build_mode }}-TS=${{ inputs.thread_safety }}"
+ name: "${{ matrix.name }}-${{ inputs.build_mode }}-${{ inputs.thread_safety }}"
# Don't run the action if the commit message says to skip CI
if: "!contains(github.event.head_commit.message, 'skip-ci')"
@@ -136,7 +137,7 @@ jobs:
- name: Install Linux Dependencies
run: |
sudo apt update
- sudo apt-get install ninja-build doxygen graphviz
+ sudo apt-get install ninja-build graphviz
sudo apt install libssl3 libssl-dev libcurl4 libcurl4-openssl-dev
sudo apt install gcc-12 g++-12 gfortran-12
echo "CC=gcc-12" >> $GITHUB_ENV
@@ -151,16 +152,21 @@ jobs:
if: matrix.os == 'windows-latest'
- name: Install Dependencies (macOS)
- run: brew install ninja doxygen
+ run: brew install ninja
if: matrix.os == 'macos-13'
+ - name: Install Dependencies
+ uses: ssciwr/doxygen-install@v1
+ with:
+ version: "1.9.7"
+
- name: Set environment for MSVC (Windows)
run: |
# Set these environment variables so CMake picks the correct compiler
echo "CXX=cl.exe" >> $GITHUB_ENV
echo "CC=cl.exe" >> $GITHUB_ENV
if: matrix.os == 'windows-latest'
-
+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Get Sources
uses: actions/checkout@v4.1.1
@@ -176,9 +182,10 @@ jobs:
cmake -C $GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \
${{ matrix.generator }} \
-DCMAKE_BUILD_TYPE=${{ inputs.build_mode }} \
- -DCMAKE_TOOLCHAIN_FILE=${{ matrix.toolchain }} \
+ ${{ matrix.toolchain }} \
-DBUILD_SHARED_LIBS=ON \
-DHDF5_ENABLE_ALL_WARNINGS=ON \
+ -DHDF5_ENABLE_DOXY_WARNINGS=ON \
-DHDF5_ENABLE_PARALLEL:BOOL=${{ matrix.parallel }} \
-DHDF5_BUILD_CPP_LIB:BOOL=${{ matrix.cpp }} \
-DHDF5_BUILD_FORTRAN=${{ matrix.fortran }} \
@@ -189,9 +196,11 @@ jobs:
-DHDF5_ENABLE_MIRROR_VFD:BOOL=${{ matrix.mirror_vfd }} \
-DHDF5_ENABLE_DIRECT_VFD:BOOL=${{ matrix.direct_vfd }} \
-DHDF5_ENABLE_ROS3_VFD:BOOL=${{ matrix.ros3_vfd }} \
+ -DHDF5_PACK_EXAMPLES:BOOL=ON \
+ -DHDF5_PACKAGE_EXTLIBS:BOOL=ON \
$GITHUB_WORKSPACE
shell: bash
- if: "! (matrix.thread_safety)"
+ if: ${{ inputs.thread_safety != 'TS' }}
- name: CMake Configure (Thread-Safe)
@@ -201,8 +210,9 @@ jobs:
cmake -C $GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \
${{ matrix.generator }} \
-DCMAKE_BUILD_TYPE=${{ inputs.build_mode }} \
- -DCMAKE_TOOLCHAIN_FILE=${{ matrix.toolchain }} \
+ ${{ matrix.toolchain }} \
-DBUILD_SHARED_LIBS=ON \
+ -DBUILD_STATIC_LIBS=${{ (matrix.os != 'windows-latest') }} \
-DHDF5_ENABLE_ALL_WARNINGS=ON \
-DHDF5_ENABLE_THREADSAFE:BOOL=ON \
-DHDF5_ENABLE_PARALLEL:BOOL=${{ matrix.parallel }} \
@@ -216,9 +226,10 @@ jobs:
-DHDF5_ENABLE_MIRROR_VFD:BOOL=${{ matrix.mirror_vfd }} \
-DHDF5_ENABLE_DIRECT_VFD:BOOL=${{ matrix.direct_vfd }} \
-DHDF5_ENABLE_ROS3_VFD:BOOL=${{ matrix.ros3_vfd }} \
+ -DHDF5_PACK_EXAMPLES:BOOL=ON \
$GITHUB_WORKSPACE
shell: bash
- if: (matrix.thread_safety)
+ if: ${{ inputs.thread_safety == 'TS' }}
#
# BUILD
@@ -237,75 +248,48 @@ jobs:
- name: CMake Run Tests
run: ctest . --parallel 2 -C ${{ inputs.build_mode }} -V
working-directory: ${{ runner.workspace }}/build
- if: (matrix.run_tests) && ! (matrix.thread_safety)
+ if: ${{ matrix.run_tests && (inputs.thread_safety != 'TS') }}
# THREAD-SAFE
- name: CMake Run Thread-Safe Tests
run: ctest . --parallel 2 -C ${{ inputs.build_mode }} -V -R ttsafe
working-directory: ${{ runner.workspace }}/build
- if: (matrix.run_tests) && (matrix.thread_safety)
+ if: ${{ matrix.run_tests && (inputs.thread_safety == 'TS') }}
#
# INSTALL (note that this runs even when we don't run the tests)
#
- #
- # The GitHub runners are inadequate for running parallel HDF5 tests,
- # so we catch most issues in daily testing. What we have here is just
- # a compile check to make sure nothing obvious is broken.
- # A workflow that builds the library
- # Parallel Linux (Ubuntu) w/ gcc + Autotools
- #
- CMake_build_parallel:
- name: "Parallel GCC-${{ inputs.build_mode }}-TS=${{ inputs.thread_safety }}"
- # Don't run the action if the commit message says to skip CI
- if: "!contains(github.event.head_commit.message, 'skip-ci')"
-
- # The type of runner that the job will run on
- runs-on: ubuntu-latest
-
- # Steps represent a sequence of tasks that will be executed as part of the job
- steps:
- # SETUP
- - name: Install Linux Dependencies
- run: |
- sudo apt update
- sudo apt-get install ninja-build doxygen graphviz
- sudo apt install libssl3 libssl-dev libcurl4 libcurl4-openssl-dev
- sudo apt install gcc-12 g++-12 gfortran-12
- sudo apt install libaec0 libaec-dev
- sudo apt install openmpi-bin openmpi-common mpi-default-dev
- echo "CC=mpicc" >> $GITHUB_ENV
- echo "FC=mpif90" >> $GITHUB_ENV
-
- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- - name: Get Sources
- uses: actions/checkout@v4.1.1
+ - name: CMake Run Package
+ run: cpack -C ${{ inputs.build_mode }} -V
+ working-directory: ${{ runner.workspace }}/build
- # CMAKE CONFIGURE
- - name: CMake Configure
+ - name: List files in the space
run: |
- mkdir "${{ runner.workspace }}/build"
- cd "${{ runner.workspace }}/build"
- CC=mpicc cmake -C $GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \
- -DCMAKE_BUILD_TYPE=${{ inputs.build_mode }} \
- -DCMAKE_TOOLCHAIN_FILE=${{ matrix.toolchain }} \
- -DBUILD_SHARED_LIBS=ON \
- -DHDF5_ENABLE_ALL_WARNINGS=ON \
- -DHDF5_ENABLE_PARALLEL:BOOL=ON \
- -DHDF5_BUILD_CPP_LIB:BOOL=OFF \
- -DHDF5_BUILD_FORTRAN=ON \
- -DHDF5_BUILD_JAVA=OFF \
- -DLIBAEC_USE_LOCALCONTENT=OFF \
- -DZLIB_USE_LOCALCONTENT=OFF \
- -DHDF5_ENABLE_MIRROR_VFD:BOOL=OFF \
- -DHDF5_ENABLE_DIRECT_VFD:BOOL=OFF \
- -DHDF5_ENABLE_ROS3_VFD:BOOL=OFF \
- $GITHUB_WORKSPACE
- shell: bash
-
- # BUILD
- - name: CMake Build
- run: cmake --build . --parallel 3 --config ${{ inputs.build_mode }}
- working-directory: ${{ runner.workspace }}/build
+ ls -l ${{ runner.workspace }}/build
+
+ # Save files created by ctest script
+ - name: Save published binary (Windows)
+ uses: actions/upload-artifact@v4
+ with:
+ name: zip-vs2022_cl-${{ inputs.build_mode }}-binary
+ path: ${{ runner.workspace }}/build/HDF5-*-win64.zip
+ if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
+ if: ${{ (matrix.os == 'windows-latest') && (inputs.thread_safety != 'TS') }}
+
+ - name: Save published binary (linux)
+ uses: actions/upload-artifact@v4
+ with:
+ name: tgz-ubuntu-2204_gcc-${{ inputs.build_mode }}-binary
+ path: ${{ runner.workspace }}/build/HDF5-*-Linux.tar.gz
+ if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
+ if: ${{ (matrix.os == 'ubuntu-latest') && (inputs.thread_safety != 'TS') }}
+
+ - name: Save published binary (Mac)
+ uses: actions/upload-artifact@v4
+ with:
+ name: tgz-osx12-${{ inputs.build_mode }}-binary
+ path: ${{ runner.workspace }}/build/HDF5-*-Darwin.tar.gz
+ if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
+ if: ${{ (matrix.os == 'macos-13') && (inputs.thread_safety != 'TS') }}
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index df3bcec..7e9805a 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -30,7 +30,10 @@ jobs:
workflow-autotools:
name: "Autotools Workflows"
uses: ./.github/workflows/autotools.yml
+ if: "!contains(github.event.head_commit.message, 'skip-ci')"
workflow-cmake:
name: "CMake Workflows"
uses: ./.github/workflows/cmake.yml
+ if: "!contains(github.event.head_commit.message, 'skip-ci')"
+
diff --git a/.github/workflows/nvhpc-cmake.yml b/.github/workflows/nvhpc-cmake.yml
index 0fd6974..b0b3143 100644
--- a/.github/workflows/nvhpc-cmake.yml
+++ b/.github/workflows/nvhpc-cmake.yml
@@ -33,8 +33,8 @@ jobs:
echo 'deb [signed-by=/usr/share/keyrings/nvidia-hpcsdk-archive-keyring.gpg] https://developer.download.nvidia.com/hpc-sdk/ubuntu/amd64 /' | sudo tee /etc/apt/sources.list.d/nvhpc.list
sudo apt-get update -y
sudo apt-get install -y nvhpc-23-9
- echo "CC=nvc" >> $GITHUB_ENV
- echo "FC=nvfortran" >> $GITHUB_ENV
+ echo "CC=/opt/nvidia/hpc_sdk/Linux_x86_64/23.9/comm_libs/openmpi4/bin/mpicc" >> $GITHUB_ENV
+ echo "FC=/opt/nvidia/hpc_sdk/Linux_x86_64/23.9/comm_libs/openmpi4/bin/mpifort" >> $GITHUB_ENV
echo "NVHPCSDK=/opt/nvidia/hpc_sdk" >> $GITHUB_ENV
echo "OMPI_CXX=/opt/nvidia/hpc_sdk/Linux_x86_64/23.9/compilers/bin/nvc++" >> $GITHUB_ENV
echo "OMPI_CC=/opt/nvidia/hpc_sdk/Linux_x86_64/23.9/compilers/bin/nvc" >> $GITHUB_ENV
diff --git a/.github/workflows/release-files.yml b/.github/workflows/release-files.yml
index 732fa1e..e443588 100644
--- a/.github/workflows/release-files.yml
+++ b/.github/workflows/release-files.yml
@@ -75,7 +75,7 @@ jobs:
# Get files created by tarball script
- name: Get doxygen (Linux)
- uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: docs-doxygen
path: ${{ github.workspace }}/${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen
@@ -84,48 +84,60 @@ jobs:
run: zip -r ${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen.zip ./${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen
- name: Get tgz-tarball (Linux)
- uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: tgz-tarball
path: ${{ github.workspace }}
- name: Get zip-tarball (Windows)
- uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: zip-tarball
path: ${{ github.workspace }}
# Get files created by cmake-ctest script
- name: Get published binary (Windows)
- uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: zip-vs2022_cl-binary
path: ${{ github.workspace }}
- name: Get published binary (MacOS)
- uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: tgz-osx12-binary
path: ${{ github.workspace }}
- name: Get published binary (Linux)
- uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: tgz-ubuntu-2204_gcc-binary
path: ${{ github.workspace }}
+ - name: Get published binary (Linux S3)
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
+ with:
+ name: tgz-ubuntu-2204_gcc_s3-binary
+ path: ${{ github.workspace }}
+
- name: Get published binary (Windows_intel)
- uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: zip-vs2022_intel-binary
path: ${{ github.workspace }}
- name: Get published binary (Linux_intel)
- uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
+ uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
with:
name: tgz-ubuntu-2204_intel-binary
path: ${{ github.workspace }}
+ - name: Get published abi reports (Linux)
+ uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
+ with:
+ name: abi-reports
+ path: ${{ github.workspace }}
+
- name: Store snapshot name
run: |
echo "${{ steps.get-file-base.outputs.FILE_BASE }}" > ./last-file.txt
@@ -139,11 +151,16 @@ jobs:
prerelease: true
files: |
last-file.txt
+ ${{ steps.get-file-base.outputs.FILE_BASE }}-hdf5_compat_report.html
+ ${{ steps.get-file-base.outputs.FILE_BASE }}-hdf5_hl_compat_report.html
+ ${{ steps.get-file-base.outputs.FILE_BASE }}-hdf5_cpp_compat_report.html
+ ${{ steps.get-file-base.outputs.FILE_BASE }}-java_compat_report.html
${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen.zip
${{ steps.get-file-base.outputs.FILE_BASE }}.tar.gz
${{ steps.get-file-base.outputs.FILE_BASE }}.zip
${{ steps.get-file-base.outputs.FILE_BASE }}-osx12.tar.gz
${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.tar.gz
+ ${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc_s3.tar.gz
${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_cl.zip
${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_intel.tar.gz
${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_intel.zip
@@ -158,11 +175,16 @@ jobs:
prerelease: false
#body_path: ${{ github.workspace }}-CHANGELOG.txt
files: |
+ ${{ steps.get-file-base.outputs.FILE_BASE }}-hdf5_compat_report.html
+ ${{ steps.get-file-base.outputs.FILE_BASE }}-hdf5_hl_compat_report.html
+ ${{ steps.get-file-base.outputs.FILE_BASE }}-hdf5_cpp_compat_report.html
+ ${{ steps.get-file-base.outputs.FILE_BASE }}-java_compat_report.html
${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen.zip
${{ steps.get-file-base.outputs.FILE_BASE }}.tar.gz
${{ steps.get-file-base.outputs.FILE_BASE }}.zip
${{ steps.get-file-base.outputs.FILE_BASE }}-osx12.tar.gz
${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.tar.gz
+ ${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc_s3.tar.gz
${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_cl.zip
${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_intel.tar.gz
${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_intel.zip
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 2e65978..768581d 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -66,14 +66,14 @@ jobs:
# Save files created by release script
- name: Save tgz-tarball
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: tgz-tarball
path: ${{ steps.set-file-base.outputs.FILE_BASE }}.tar.gz
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
- name: Save zip-tarball
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: zip-tarball
path: ${{ steps.set-file-base.outputs.FILE_BASE }}.zip
@@ -84,10 +84,20 @@ jobs:
uses: ./.github/workflows/cmake-ctest.yml
with:
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
diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml
index 66b1e7d..4e2d4a4 100644
--- a/.github/workflows/tarball.yml
+++ b/.github/workflows/tarball.yml
@@ -133,14 +133,14 @@ jobs:
# Save files created by release script
- name: Save tgz-tarball
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: tgz-tarball
path: ${{ steps.set-file-base.outputs.FILE_BASE }}.tar.gz
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
- name: Save zip-tarball
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: zip-tarball
path: ${{ steps.set-file-base.outputs.FILE_BASE }}.zip