Build the KPP standalone executable for fullchem & custom mechanisms #225
Workflow file for this run
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
name: gcclassic-compile-tests | |
on: [pull_request, push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
gnu: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
build_type: [Debug] | |
env: | |
CXX: g++ | |
CC: gcc | |
FC: gfortran | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt update -y | |
sudo apt install -y libnetcdf-dev netcdf-bin libnetcdff-dev | |
- name: Compile-only tests | |
run: | | |
git submodule update --init --recursive | |
cd test/integration/GCClassic | |
./integrationTest.sh -d $HOME/compile-tests -t compile | |
cat $HOME/compile-tests/logs/results.compile.log |