forked from HDFGroup/hdf5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
363 changed files
with
7,775 additions
and
7,098 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Ref: https://github.com/codespell-project/codespell#using-a-config-file | ||
[codespell] | ||
skip = .git,*.svg,.codespellrc,./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 | ||
skip = .git,*.svg,.codespellrc,./bin/trace,./hl/tools/h5watch/h5watch.c,./tools/test/h5jam/tellub.c,./config/sanitizer/LICENSE,./config/sanitizer/sanitizers.cmake,./tools/test/h5import/testfiles/*.conf,./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 | ||
check-hidden = true | ||
# ignore-regex = | ||
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 | ||
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,TEXTIN |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -80,7 +80,7 @@ jobs: | |
# working-directory: ${{ runner.workspace }}/build | ||
|
||
build_v1_10: | ||
name: "gcc DBG v1.10 default API (build only)" | ||
name: "gcc DBG v1.10 default API" | ||
runs-on: ubuntu-latest | ||
steps: | ||
# SETUP | ||
|
@@ -140,7 +140,7 @@ jobs: | |
working-directory: ${{ runner.workspace }}/build | ||
|
||
build_v1_12: | ||
name: "gcc DBG v1.12 default API (build only)" | ||
name: "gcc DBG v1.12 default API" | ||
runs-on: ubuntu-latest | ||
steps: | ||
# SETUP | ||
|
@@ -199,21 +199,21 @@ jobs: | |
run: ctest . --parallel 2 -C Debug -V | ||
working-directory: ${{ runner.workspace }}/build | ||
|
||
build_v1_14: | ||
name: "gcc DBG v1.14 default API (build only)" | ||
build_zlibng: | ||
name: "gcc use zlib-ng filter" | ||
runs-on: ubuntu-latest | ||
steps: | ||
# SETUP | ||
- name: Install Linux Dependencies | ||
run: | | ||
sudo apt-get 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 | ||
echo "CC=gcc-12" >> $GITHUB_ENV | ||
echo "CXX=g++-12" >> $GITHUB_ENV | ||
echo "FC=gfortran-12" >> $GITHUB_ENV | ||
sudo apt-get 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 | ||
echo "CC=gcc-12" >> $GITHUB_ENV | ||
echo "CXX=g++-12" >> $GITHUB_ENV | ||
echo "FC=gfortran-12" >> $GITHUB_ENV | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Get Sources | ||
uses: actions/[email protected] | ||
|
@@ -227,34 +227,33 @@ jobs: | |
cd "${{ runner.workspace }}/build" | ||
cmake -C $GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \ | ||
-G Ninja \ | ||
-DCMAKE_BUILD_TYPE=Debug \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DBUILD_SHARED_LIBS=ON \ | ||
-DHDF5_ENABLE_ALL_WARNINGS=ON \ | ||
-DHDF5_ENABLE_PARALLEL:BOOL=OFF \ | ||
-DHDF5_BUILD_CPP_LIB:BOOL=ON \ | ||
-DHDF5_BUILD_FORTRAN=ON \ | ||
-DHDF5_BUILD_JAVA=ON \ | ||
-DHDF5_BUILD_DOC=OFF \ | ||
-DLIBAEC_USE_LOCALCONTENT=OFF \ | ||
-DZLIB_USE_LOCALCONTENT=OFF \ | ||
-DLIBAEC_USE_LOCALCONTENT=ON \ | ||
-DZLIB_USE_LOCALCONTENT=ON \ | ||
-DHDF5_ENABLE_MIRROR_VFD:BOOL=ON \ | ||
-DHDF5_ENABLE_DIRECT_VFD:BOOL=ON \ | ||
-DHDF5_ENABLE_ROS3_VFD:BOOL=ON \ | ||
-DH5_NO_DEPRECATED_SYMBOLS:BOOL=OFF \ | ||
-DDEFAULT_API_VERSION:STRING=v114 \ | ||
-DHDF5_USE_ZLIBNG:BOOL=ON \ | ||
$GITHUB_WORKSPACE | ||
shell: bash | ||
|
||
# | ||
# BUILD | ||
# | ||
- name: CMake Build | ||
run: cmake --build . --parallel 3 --config Debug | ||
run: cmake --build . --parallel 3 --config Release | ||
working-directory: ${{ runner.workspace }}/build | ||
|
||
# | ||
# RUN TESTS | ||
# | ||
- name: CMake Run Tests | ||
run: ctest . --parallel 2 -C Debug -V | ||
run: ctest . --parallel 2 -C Release -V | ||
working-directory: ${{ runner.workspace }}/build |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"aliveStatusCodes": [200, 500] | ||
} |
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
Oops, something went wrong.