Merge pull request #297 from AlysonStahl-NOAA/as_spack_cache #742
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 is the developer workflow for the wgrib2 project. | |
# | |
# Kyle Gerheiser, Ed Hartnett | |
name: developer | |
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: | |
developer: | |
runs-on: ubuntu-latest | |
env: | |
FC: gfortran | |
CC: gcc | |
LD_LIBRARY_PATH: "/home/runner/work/wgrib2/wgrib2/nceplibs/jasper/lib/" | |
permissions: | |
id-token: write | |
pages: write | |
steps: | |
- name: install | |
run: | | |
sudo apt-get update | |
sudo apt-get install libnetcdf-dev libnetcdff-dev netcdf-bin pkg-config libopenblas-dev | |
sudo apt-get install libpng-dev autotools-dev libaec-dev autoconf gcovr doxygen | |
- name: "Build dependencies" | |
uses: NOAA-EMC/ci-build-nceplibs@develop | |
with: | |
jasper-version: version-4.0.0 | |
ip-version: develop | |
g2c-version: develop | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
path: wgrib2 | |
- name: cache-data | |
id: cache-data | |
uses: actions/cache@v4 | |
with: | |
path: ~/data | |
key: data-2 | |
- name: build | |
run: | | |
cd wgrib2 | |
mkdir build | |
cd build | |
export CFLAGS='-Wall -g -fprofile-abs-path -fprofile-arcs -ftest-coverage -O0 -I/home/runner/work/wgrib2/wgrib2/nceplibs/NCEPLIBS-g2c/include' | |
export FCFLAGS='-Wall -g -fprofile-abs-path -fprofile-arcs -ftest-coverage -O0' | |
export FFLAGS='-Wall -g -fprofile-abs-path -fprofile-arcs -ftest-coverage -O0' | |
cmake .. -DENABLE_DOCS=ON -DFTP_TEST_FILES=ON -DCMAKE_PREFIX_PATH="$GITHUB_WORKSPACE/nceplibs/NCEPLIBS-ip;$GITHUB_WORKSPACE/nceplibs/jasper;$GITHUB_WORKSPACE/nceplibs/NCEPLIBS-g2c" -DTEST_FILE_DIR=/home/runner/data -DMAKE_FTN_API=ON -DUSE_NETCDF4=ON -DUSE_AEC=ON -DUSE_IPOLATES=ON -DUSE_JASPER=ON | |
make VERBOSE=1 | |
ctest --verbose --output-on-failure --rerun-failed | |
gcovr --root .. -v --html-details --exclude ../tests --exclude CMakeFiles --print-summary -o test-coverage.html &> /dev/null | |
- name: cache-data | |
if: steps.cache-data.outputs.cache-hit != 'true' | |
run: | | |
mkdir ~/data | |
cp $GITHUB_WORKSPACE/wgrib2/build/tests/data/* ~/data | |
- name: upload-test-coverage | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wgrib2-test-coverage | |
path: | | |
wgrib2/build/*.html | |
wgrib2/build/*.css | |
- name: Upload built documentation | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: wgrib2/build/docs/html # Path to the built site files |