Skip to content

added National Water Center as a new subcenter (18) to grib^Call_tabl… #12

added National Water Center as a new subcenter (18) to grib^Call_tabl…

added National Water Center as a new subcenter (18) to grib^Call_tabl… #12

Workflow file for this run

name: Linux
on:
push:
branches:
- develop
pull_request:
branches:
- develop
# Cancel in-progress workflows when pushing to a branch
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
Linux:
runs-on: ubuntu-latest
env:
FC: gfortran
CC: gcc
strategy:
matrix:
config:
- {
options: "-DCMAKE_BUILD_TYPE=Debug"
}
- {
options: "-DBUILD_SHARED_LIBS=ON"
}
steps:
- name: checkout
uses: actions/checkout@v4
with:
path: g2tmpl
submodules: true
- name: build
run: |
cd g2tmpl
mkdir build
cd build
cmake ${{ matrix.config.options }} -DCMAKE_INSTALL_PREFIX=~/g2tmpl/install ..
make -j2 VERBOSE=1
- name: test
run: |
set -x
cd $GITHUB_WORKSPACE/g2tmpl/build
ctest --verbose --output-on-failure --rerun-failed
make install
if [ "${{ matrix.config.options }}" = "-DBUILD_SHARED_LIBS=ON" ]; then
ls -l ~/g2tmpl/install/lib/lib*.so || exit 1
else
ls -l ~/g2tmpl/install/lib/lib*.a || exit 1
fi