-
-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Merge the Test Express workflows into the PR CI * Split merge request triggers into autotools vs cmake
- Loading branch information
Showing
7 changed files
with
188 additions
and
181 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 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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: hdf5 TestExpress Autotools CI | ||
|
||
on: | ||
workflow_call: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build_and_test: | ||
strategy: | ||
matrix: | ||
build_mode: ["production", "debug"] | ||
include: | ||
- build_mode: "production" | ||
- build_mode: "debug" | ||
|
||
name: "Autotools ${{ matrix.build_mode }} Express Test Workflows" | ||
|
||
# Don't run the action if the commit message says to skip CI | ||
if: "!contains(github.event.head_commit.message, 'skip-ci')" | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- 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 | ||
sudo apt install automake autoconf libtool libtool-bin | ||
sudo apt install libaec0 libaec-dev | ||
echo "CC=gcc-12" >> $GITHUB_ENV | ||
echo "CXX=g++-12" >> $GITHUB_ENV | ||
echo "FC=gfortran-12" >> $GITHUB_ENV | ||
- name: Get Sources | ||
uses: actions/checkout@v4.1.1 | ||
|
||
- name: Autotools Configure | ||
shell: bash | ||
run: | | ||
sh ./autogen.sh | ||
mkdir "${{ runner.workspace }}/build" | ||
cd "${{ runner.workspace }}/build" | ||
$GITHUB_WORKSPACE/configure \ | ||
--enable-build-mode=${{ matrix.build_mode }} \ | ||
--enable-shared \ | ||
--disable-parallel \ | ||
--disable-cxx \ | ||
--disable-fortran \ | ||
--disable-java \ | ||
--with-szlib=yes | ||
- name: Autotools Build | ||
shell: bash | ||
run: | | ||
make -j3 | ||
working-directory: ${{ runner.workspace }}/build | ||
|
||
- name: Autotools Test | ||
shell: bash | ||
env: | ||
HDF5TestExpress: 0 | ||
run: | | ||
cd test | ||
make -j3 check | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: hdf5 TestExpress CMake CI | ||
|
||
on: | ||
workflow_call: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build_and_test: | ||
strategy: | ||
matrix: | ||
build_mode: ["Release", "Debug"] | ||
include: | ||
- build_mode: "Release" | ||
- build_mode: "Debug" | ||
|
||
name: "CMake ${{ matrix.build_mode }} Express Test Workflows" | ||
|
||
# Don't run the action if the commit message says to skip CI | ||
if: "!contains(github.event.head_commit.message, 'skip-ci')" | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- 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 libaec0 libaec-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 | ||
- name: Get Sources | ||
uses: actions/checkout@v4.1.1 | ||
|
||
- name: CMake Configure | ||
shell: bash | ||
run: | | ||
mkdir "${{ runner.workspace }}/build" | ||
cd "${{ runner.workspace }}/build" | ||
cmake -C $GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \ | ||
-G Ninja \ | ||
-DCMAKE_BUILD_TYPE=${{ matrix.build_mode }} \ | ||
-DBUILD_SHARED_LIBS=ON \ | ||
-DHDF5_ENABLE_ALL_WARNINGS=ON \ | ||
-DHDF5_ENABLE_PARALLEL:BOOL=OFF \ | ||
-DHDF5_BUILD_CPP_LIB:BOOL=OFF \ | ||
-DHDF5_BUILD_FORTRAN=OFF \ | ||
-DHDF5_BUILD_JAVA=OFF \ | ||
-DHDF5_BUILD_DOC=OFF \ | ||
-DLIBAEC_USE_LOCALCONTENT=OFF \ | ||
-DZLIB_USE_LOCALCONTENT=OFF \ | ||
-DHDF_TEST_EXPRESS=0 \ | ||
$GITHUB_WORKSPACE | ||
- name: CMake Build | ||
run: cmake --build . --parallel 3 --config ${{ matrix.build_mode }} | ||
working-directory: ${{ runner.workspace }}/build | ||
|
||
- name: CMake Run Tests | ||
run: ctest . --parallel 2 -C ${{ matrix.build_mode }} -V -R H5TESTXPR | ||
working-directory: ${{ runner.workspace }}/build | ||
|
Oops, something went wrong.