-
-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'HDFGroup:develop' into develop-libaec-fix
- Loading branch information
Showing
179 changed files
with
5,790 additions
and
2,794 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,12 +27,12 @@ jobs: | |
# Linux (Ubuntu) w/ gcc + coverage | ||
# | ||
name: "Ubuntu GCC Coverage" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install CMake Dependencies (Linux_coverage) | ||
run: | | ||
sudo apt update | ||
sudo apt-get install ninja-build doxygen graphviz curl libncurses5 build-essential | ||
sudo apt-get install ninja-build doxygen graphviz curl build-essential | ||
sudo apt install libssl3 libssl-dev libcurl4 libcurl4-openssl-dev | ||
sudo apt-get install lcov -q -y | ||
|
@@ -99,6 +99,7 @@ jobs: | |
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_PACK_EXAMPLES:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_PACKAGE_EXTLIBS:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_NO_PACKAGES:BOOL=ON") | ||
|
@@ -122,19 +123,19 @@ jobs: | |
# Linux (Ubuntu) w/ clang + LeakSanitizer | ||
# | ||
name: "Ubuntu Clang LeakSanitizer" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install CMake Dependencies (Linux_Leak) | ||
run: | | ||
sudo apt update | ||
sudo apt-get install ninja-build doxygen graphviz curl libncurses5 | ||
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5 | ||
- name: add clang to env | ||
uses: KyleMayes/[email protected] | ||
id: setup-clang | ||
with: | ||
env: true | ||
version: '18' | ||
version: '18.1' | ||
|
||
- name: Set file base name (Linux_Leak) | ||
id: set-file-base | ||
|
@@ -202,6 +203,7 @@ jobs: | |
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF") | ||
- name: Run ctest (Linux_Leak) | ||
run: | | ||
|
@@ -222,19 +224,19 @@ jobs: | |
# Linux (Ubuntu) w/ clang + AddressSanitizer | ||
# | ||
name: "Ubuntu Clang AddressSanitizer" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install CMake Dependencies (Linux_Address) | ||
run: | | ||
sudo apt update | ||
sudo apt-get install ninja-build doxygen graphviz curl libncurses5 | ||
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5 | ||
- name: add clang to env | ||
uses: KyleMayes/[email protected] | ||
id: setup-clang | ||
with: | ||
env: true | ||
version: '18' | ||
version: '18.1' | ||
|
||
- name: Set file base name (Linux_Address) | ||
id: set-file-base | ||
|
@@ -302,6 +304,7 @@ jobs: | |
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF") | ||
- name: Run ctest (Linux_Address) | ||
run: | | ||
|
@@ -322,19 +325,19 @@ jobs: | |
# Linux (Ubuntu) w/ clang + UndefinedBehaviorSanitizer | ||
# | ||
name: "Ubuntu Clang UndefinedBehaviorSanitizer" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install CMake Dependencies (Linux_UndefinedBehavior) | ||
run: | | ||
sudo apt update | ||
sudo apt-get install ninja-build doxygen graphviz curl libncurses5 | ||
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5 | ||
- name: add clang to env | ||
uses: KyleMayes/[email protected] | ||
id: setup-clang | ||
with: | ||
env: true | ||
version: '18' | ||
version: '18.1' | ||
|
||
- name: Set file base name (Linux_UndefinedBehavior) | ||
id: set-file-base | ||
|
@@ -402,6 +405,7 @@ jobs: | |
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF") | ||
- name: Run ctest (Linux_UndefinedBehavior) | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,6 +109,7 @@ jobs: | |
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=ON") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF") | ||
- name: Run ctest script (Windows) | ||
run: | | ||
|
@@ -200,6 +201,7 @@ jobs: | |
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=ON") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF") | ||
- name: Run ctest (Linux) | ||
run: | | ||
|
@@ -230,6 +232,12 @@ jobs: | |
with: | ||
version: "1.9.7" | ||
|
||
- name: check clang version | ||
shell: bash | ||
run: | | ||
which clang | ||
clang -v | ||
- name: Set up JDK 19 | ||
uses: actions/setup-java@v4 | ||
with: | ||
|
@@ -303,6 +311,7 @@ jobs: | |
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=ON") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF") | ||
- name: Run ctest (MacOS_latest) | ||
id: run-ctest | ||
|
@@ -391,6 +400,7 @@ jobs: | |
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=ON") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF") | ||
- name: Run ctest (Linux S3) | ||
run: | | ||
|
@@ -495,12 +505,12 @@ jobs: | |
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=ON") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF") | ||
- name: Run ctest (Windows_intel) with oneapi | ||
env: | ||
FC: ${{ steps.setup-fortran.outputs.fc }} | ||
CC: ${{ steps.setup-fortran.outputs.cc }} | ||
CXX: ${{ steps.setup-fortran.outputs.cc }} | ||
run: | | ||
cd "${{ runner.workspace }}/hdf5" | ||
ctest -S HDF5config.cmake,CTEST_SITE_EXT=GH-${{ github.event.repository.full_name }}-Intel,LOCAL_SUBMIT=ON,NINJA=TRUE,BUILD_GENERATOR=VS202264,CTEST_SOURCE_NAME=${{ steps.set-file-base.outputs.SOURCE_BASE }} -C Release -VV -O hdf5.log | ||
|
@@ -592,12 +602,12 @@ jobs: | |
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=ON") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF") | ||
- name: Run ctest (Linux_intel) | ||
env: | ||
FC: ${{ steps.setup-fortran.outputs.fc }} | ||
CC: ${{ steps.setup-fortran.outputs.cc }} | ||
CXX: ${{ steps.setup-fortran.outputs.cxx }} | ||
run: | | ||
cd "${{ runner.workspace }}/hdf5" | ||
ctest -S HDF5config.cmake,CTEST_SITE_EXT=GH-${{ github.event.repository.full_name }}-Intel,LOCAL_SUBMIT=ON,NINJA=TRUE,BUILD_GENERATOR=Unix,CTEST_SOURCE_NAME=${{ steps.set-file-base.outputs.SOURCE_BASE }} -C Release -VV -O hdf5.log | ||
|
@@ -617,19 +627,25 @@ jobs: | |
# Linux (Ubuntu) w/ clang + CMake | ||
# | ||
name: "Ubuntu Clang CMake" | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install CMake Dependencies (Linux_clang) | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install ninja-build doxygen graphviz curl libncurses5 | ||
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5 | ||
- name: add clang to env | ||
uses: KyleMayes/[email protected] | ||
id: setup-clang | ||
with: | ||
env: true | ||
version: '18' | ||
version: '18.1' | ||
|
||
- name: check clang version | ||
shell: bash | ||
run: | | ||
which clang | ||
clang -v | ||
- name: Set file base name (Linux_clang) | ||
id: set-file-base | ||
|
@@ -692,6 +708,7 @@ jobs: | |
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=ON") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF") | ||
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF") | ||
- name: Run ctest (Linux_clang) | ||
run: | | ||
|
Oops, something went wrong.