summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-03-01 01:06:50 (GMT)
committerGitHub <noreply@github.com>2023-03-01 01:06:50 (GMT)
commit4e645aeedf621b341c6b6d5665fecdd08314bda9 (patch)
tree2c7dff097d74e6b1ea934a3196ed39cf1ec025e3 /.github/workflows
parent063a61c36b189bb9b8249f495043a32967eda9d7 (diff)
downloadhdf5-4e645aeedf621b341c6b6d5665fecdd08314bda9.zip
hdf5-4e645aeedf621b341c6b6d5665fecdd08314bda9.tar.gz
hdf5-4e645aeedf621b341c6b6d5665fecdd08314bda9.tar.bz2
1.12 Add fetchcontent for compression libs and fix cmake config #2487 (#2493)
* Add fetchcontent for compression libs and fix cmake config #2487 * Add CI test for FetchContent * Use LINK_COMP_LIBS instead of STATIC_LIBRARY for depends
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/codespell.yml2
-rw-r--r--.github/workflows/main.yml8
2 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index ddd1700..1bd7ebc 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -12,4 +12,4 @@ jobs:
- uses: codespell-project/actions-codespell@master
with:
skip: ./bin/trace,./hl/tools/h5watch/h5watch.c,./tools/test/h5jam/tellub.c,./config/sanitizer/LICENSE,./tools/test/h5repack/testfiles/*.dat
- ignore_words_list: 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,minnum,ro,oce,ot
+ ignore_words_list: 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,minnum,ro,oce,ot,msdos
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 4541473..80278ad 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -73,6 +73,8 @@ jobs:
cpp: ON
fortran: OFF
java: ON
+ libaecfc: ON
+ zlibfc: ON
parallel: OFF
mirror_vfd: OFF
direct_vfd: OFF
@@ -88,6 +90,8 @@ jobs:
cpp: ON
fortran: ON
java: ON
+ libaecfc: ON
+ zlibfc: ON
parallel: OFF
mirror_vfd: ON
direct_vfd: ON
@@ -143,6 +147,8 @@ jobs:
cpp: ON
fortran: OFF
java: ON
+ libaecfc: ON
+ zlibfc: ON
parallel: OFF
mirror_vfd: ON
direct_vfd: OFF
@@ -361,7 +367,7 @@ jobs:
run: |
mkdir "${{ runner.workspace }}/build"
cd "${{ runner.workspace }}/build"
- cmake ${{ matrix.generator }} -DCMAKE_BUILD_TYPE=${{ matrix.build_mode.cmake }} -DCMAKE_TOOLCHAIN_FILE=${{ matrix.toolchain }} -DBUILD_SHARED_LIBS=ON -DHDF5_ENABLE_ALL_WARNINGS=ON -DHDF5_ENABLE_PARALLEL:BOOL=${{ matrix.parallel }} -DHDF5_BUILD_CPP_LIB:BOOL=${{ matrix.cpp }} -DHDF5_BUILD_FORTRAN=${{ matrix.fortran }} -DHDF5_BUILD_JAVA=${{ matrix.java }} -DHDF5_ENABLE_MIRROR_VFD:BOOL=${{ matrix.mirror_vfd }} -DHDF5_ENABLE_DIRECT_VFD:BOOL=${{ matrix.direct_vfd }} $GITHUB_WORKSPACE
+ cmake ${{ matrix.generator }} -DCMAKE_BUILD_TYPE=${{ matrix.build_mode.cmake }} -DCMAKE_TOOLCHAIN_FILE=${{ matrix.toolchain }} -DBUILD_SHARED_LIBS=ON -DHDF5_ENABLE_ALL_WARNINGS=ON -DHDF5_ENABLE_PARALLEL:BOOL=${{ matrix.parallel }} -DHDF5_BUILD_CPP_LIB:BOOL=${{ matrix.cpp }} -DHDF5_BUILD_FORTRAN=${{ matrix.fortran }} -DHDF5_BUILD_JAVA=${{ matrix.java }} -DBUILD_SZIP_WITH_FETCHCONTENT=${{ matrix.libaecfc }} -DBUILD_ZLIB_WITH_FETCHCONTENT=${{ matrix.zlibfc }} -DHDF5_ENABLE_MIRROR_VFD:BOOL=${{ matrix.mirror_vfd }} -DHDF5_ENABLE_DIRECT_VFD:BOOL=${{ matrix.direct_vfd }} $GITHUB_WORKSPACE
shell: bash
if: (matrix.generator != 'autogen') && (! matrix.thread_safe.enabled)