-
-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Do not pack Mac dmg for regular runs * Add no Filters workflow
- Loading branch information
Showing
2 changed files
with
61 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -408,6 +408,60 @@ jobs: | |
run: ctest . --parallel 2 -C Release -V | ||
working-directory: ${{ runner.workspace }}/build | ||
|
||
build_nofilter: | ||
name: "gcc no filters" | ||
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 | ||
# 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=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 \ | ||
-DHDF5_ENABLE_MIRROR_VFD:BOOL=ON \ | ||
-DHDF5_ENABLE_DIRECT_VFD:BOOL=ON \ | ||
-DHDF5_ENABLE_ROS3_VFD:BOOL=ON \ | ||
-DHDF5_ENABLE_Z_LIB_SUPPORT:BOOL=OFF \ | ||
-DHDF5_ENABLE_SZIP_SUPPORT:=BOOL=OFF \ | ||
-DHDF5_ENABLE_SZIP_ENCODING:=BOOL=OFF \ | ||
$GITHUB_WORKSPACE | ||
shell: bash | ||
|
||
# BUILD | ||
- name: CMake Build | ||
run: cmake --build . --parallel 3 --config Release | ||
working-directory: ${{ runner.workspace }}/build | ||
|
||
# RUN TESTS | ||
- name: CMake Run Tests | ||
run: ctest . --parallel 2 -C Release -V | ||
working-directory: ${{ runner.workspace }}/build | ||
|
||
build_debug_werror: | ||
name: "gcc DBG -Werror (build only)" | ||
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