summaryrefslogtreecommitdiffstats
path: root/develop/classhdf_1_1hdf5lib_1_1structs_1_1_h5__ih__info__t.html
diff options
context:
space:
mode:
Diffstat (limited to 'develop/classhdf_1_1hdf5lib_1_1structs_1_1_h5__ih__info__t.html')
-rw-r--r--develop/classhdf_1_1hdf5lib_1_1structs_1_1_h5__ih__info__t.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/develop/classhdf_1_1hdf5lib_1_1structs_1_1_h5__ih__info__t.html b/develop/classhdf_1_1hdf5lib_1_1structs_1_1_h5__ih__info__t.html
index 71cfb33..f21e890 100644
--- a/develop/classhdf_1_1hdf5lib_1_1structs_1_1_h5__ih__info__t.html
+++ b/develop/classhdf_1_1hdf5lib_1_1structs_1_1_h5__ih__info__t.html
@@ -38,7 +38,7 @@
<td id="projectlogo"><img alt="Logo" src="HDFG-logo.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname"><a href="https://www.hdfgroup.org">HDF5</a>
- &#160;<span id="projectnumber">1.15.0.68e8c0e</span>
+ &#160;<span id="projectnumber">1.15.0.2908dd1</span>
</div>
<div id="projectbrief">API Reference</div>
</td>
0c018c4ac7a78640a51d404332a712d72'>config/sanitizer/tools.cmake135
-rw-r--r--release_docs/RELEASE.txt10
-rw-r--r--src/CMakeLists.txt4
-rw-r--r--tools/test/h5copy/testh5copy.sh.in42
6 files changed, 123 insertions, 93 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index ac22bdd..0104725 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -45,8 +45,12 @@ jobs:
- run: |
echo "Tag already present: ${{ steps.tag_create.outputs.tag_exists }}"
- getfiles:
+ PreRelease-getfiles:
runs-on: ubuntu-latest
+ needs: create-tag
+ environment: snapshots_1_14
+ permissions:
+ contents: write
steps:
- name: Get file base name
id: get-file-base
@@ -92,21 +96,6 @@ jobs:
name: tgz-ubuntu-2204-binary
path: ${{ github.workspace }}
- # Get files used by release script
-
- PreRelease:
- runs-on: ubuntu-latest
- needs: [create-tag, getfiles]
- environment: snapshots_1_14
- permissions:
- contents: write
- steps:
- - name: Get file base name
- id: get-file-base
- run: |
- FILE_NAME_BASE=$(echo "${{ inputs.file_base }}")
- echo "FILE_BASE=$FILE_NAME_BASE" >> $GITHUB_OUTPUT
-
- name: PreRelease tag
uses: softprops/action-gh-release@v1
with:
diff --git a/config/cmake/HDFCompilerFlags.cmake b/config/cmake/HDFCompilerFlags.cmake
index 1bbf57c..00850d3 100644
--- a/config/cmake/HDFCompilerFlags.cmake
+++ b/config/cmake/HDFCompilerFlags.cmake
@@ -54,7 +54,9 @@ if (CMAKE_COMPILER_IS_GNUCC)
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Og -ftrapv -fno-common")
endif ()
else ()
- if (CMAKE_C_COMPILER_ID STREQUAL "GNU" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 5.0)
+ if (CMAKE_C_COMPILER_ID STREQUAL "GNU" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 5.0 AND
+ NOT CMAKE_C_CLANG_TIDY)
+ # `clang-tidy` does not understand -fstdarg-opt
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstdarg-opt")
endif ()
if (CMAKE_C_COMPILER_ID STREQUAL "GNU" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 10.0)
diff --git a/config/sanitizer/tools.cmake b/config/sanitizer/tools.cmake