-
-
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.
Only call find_package once, by default module mode for zlib (#5284)
* Update workflow and mark options advanced
- Loading branch information
Showing
5 changed files
with
100 additions
and
17 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 |
---|---|---|
|
@@ -246,6 +246,64 @@ jobs: | |
run: ctest . --parallel 2 -C Debug -V | ||
working-directory: ${{ runner.workspace }}/build | ||
|
||
build_system_zlib: | ||
name: "gcc system zlib" | ||
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 zlib1g-dev | ||
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] | ||
|
||
# CMAKE CONFIGURE | ||
- name: CMake Configure | ||
run: | | ||
mkdir "${{ runner.workspace }}/build" | ||
cd "${{ runner.workspace }}/build" | ||
cmake -C $GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \ | ||
-G Ninja \ | ||
--log-level=VERBOSE \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DBUILD_SHARED_LIBS:BOOL=ON \ | ||
-DHDF5_ENABLE_ALL_WARNINGS:BOOL=ON \ | ||
-DHDF5_ENABLE_PARALLEL:BOOL=OFF \ | ||
-DHDF5_BUILD_CPP_LIB:BOOL=ON \ | ||
-DHDF5_BUILD_FORTRAN:BOOL=ON \ | ||
-DHDF5_BUILD_JAVA:BOOL=ON \ | ||
-DHDF5_BUILD_DOC:BOOL=OFF \ | ||
-DHDF5_ENABLE_MIRROR_VFD:BOOL=ON \ | ||
-DHDF5_ENABLE_DIRECT_VFD:BOOL=ON \ | ||
-DHDF5_ENABLE_ROS3_VFD:BOOL=ON \ | ||
-DHDF5_ALLOW_EXTERNAL_SUPPORT:STRING="NO" \ | ||
-DHDF5_ENABLE_Z_LIB_SUPPORT:BOOL=ON \ | ||
-DZLIB_USE_LOCALCONTENT:BOOL=OFF \ | ||
-DZLIB_USE_EXTERNAL:BOOL=OFF \ | ||
-DHDF5_ENABLE_SZIP_SUPPORT:BOOL=OFF \ | ||
-DHDF5_ENABLE_SZIP_ENCODING:BOOL=OFF \ | ||
-DLIBAEC_USE_LOCALCONTENT:BOOL=OFF \ | ||
$GITHUB_WORKSPACE | ||
shell: bash | ||
|
||
# BUILD | ||
- name: CMake Build | ||
run: cmake --build . --parallel 3 --config Debug | ||
working-directory: ${{ runner.workspace }}/build | ||
|
||
# RUN TESTS | ||
- name: CMake Run Tests | ||
run: ctest . --parallel 2 -C Debug -V | ||
working-directory: ${{ runner.workspace }}/build | ||
|
||
build_zlibng: | ||
name: "gcc use zlib-ng filter" | ||
runs-on: ubuntu-latest | ||
|
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