more code cleanup to prepare for 8-byte int conversion #1555
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
# This is a GitHub actions workflow for NCEPLIBS-g2. | |
# | |
# This builds the develop branch with different versions of | |
# dependencies. | |
# | |
# Ed Hartnett, 12/22/22 | |
name: Linux_versions | |
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_versions: | |
runs-on: ubuntu-latest | |
env: | |
FC: gfortran | |
CC: gcc | |
LD_LIBRARY_PATH: /home/runner/jasper/lib | |
strategy: | |
fail-fast: true | |
matrix: | |
jasper-version: [2.0.33, 3.0.5, 4.0.0] | |
bacio-version: [2.4.1, 2.5.0, 2.6.0] | |
w3emc-version: [2.9.2, 2.9.3, 2.10.0] | |
steps: | |
- name: install-dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install libpng-dev zlib1g-dev libjpeg-dev | |
- name: cache-bacio | |
id: cache-bacio | |
uses: actions/cache@v3 | |
with: | |
path: ~/bacio | |
key: bacio-${{ runner.os }}-${{ matrix.bacio-version }} | |
- name: checkout-bacio | |
if: steps.cache-bacio.outputs.cache-hit != 'true' | |
uses: actions/checkout@v3 | |
with: | |
repository: NOAA-EMC/NCEPLIBS-bacio | |
path: bacio | |
ref: v${{ matrix.bacio-version }} | |
- name: build-bacio | |
if: steps.cache-bacio.outputs.cache-hit != 'true' | |
run: | | |
cd bacio | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_INSTALL_PREFIX=~/bacio | |
make -j2 | |
make install | |
- name: cache-w3emc | |
id: cache-w3emc | |
uses: actions/cache@v3 | |
with: | |
path: ~/w3emc | |
key: w3emc-${{ runner.os }}-${{ matrix.w3emc-version }}-${{ matrix.bacio-version }}-1 | |
- name: checkout-w3emc | |
if: steps.cache-w3emc.outputs.cache-hit != 'true' | |
uses: actions/checkout@v3 | |
with: | |
repository: NOAA-EMC/NCEPLIBS-w3emc | |
path: w3emc | |
ref: v${{ matrix.w3emc-version }} | |
- name: build-w3emc | |
if: steps.cache-w3emc.outputs.cache-hit != 'true' | |
run: | | |
cd w3emc | |
mkdir build | |
cd build | |
cmake -DCMAKE_PREFIX_PATH=~/bacio -DCMAKE_INSTALL_PREFIX=~/w3emc -DBUILD_WITH_BUFR=OFF .. | |
make -j2 | |
make install | |
- name: cache-jasper | |
id: cache-jasper | |
uses: actions/cache@v3 | |
with: | |
path: ~/jasper | |
key: jasper-${{ runner.os }}-${{ matrix.jasper-version }} | |
- name: checkout-jasper | |
if: steps.cache-jasper.outputs.cache-hit != 'true' | |
uses: actions/checkout@v3 | |
with: | |
repository: jasper-software/jasper | |
path: jasper | |
ref: version-${{ matrix.jasper-version }} | |
- name: build-jasper | |
if: steps.cache-jasper.outputs.cache-hit != 'true' | |
run: | | |
cd jasper | |
mkdir build-jasper && cd build-jasper | |
cmake .. -DCMAKE_INSTALL_PREFIX=~/jasper | |
make -j2 | |
make install | |
- name: checkout-g2c | |
uses: actions/checkout@v3 | |
with: | |
repository: NOAA-EMC/NCEPLIBS-g2c | |
path: g2c | |
ref: develop | |
- name: build-g2c | |
run: | | |
cd g2c | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_INSTALL_PREFIX=~/g2c -DJasper_ROOT=~/jasper | |
make -j2 | |
make install | |
- name: checkout | |
uses: actions/checkout@v3 | |
with: | |
path: g2 | |
- name: cache-data | |
id: cache-data | |
uses: actions/cache@v3 | |
with: | |
path: ~/data | |
key: data-5 | |
- name: build | |
run: | | |
set -x | |
cd g2 | |
mkdir build | |
cd build | |
cmake -DCMAKE_PREFIX_PATH="~/jasper;~/g2c;~/bacio;~/w3emc" -DLOGGING=ON -DFTP_TEST_FILES=ON -DTEST_FILE_DIR=/home/runner/data .. | |
make -j2 VERBOSE=1 | |
- name: cache-data | |
if: steps.cache-data.outputs.cache-hit != 'true' | |
run: | | |
mkdir ~/data | |
cp $GITHUB_WORKSPACE/g2/build/tests/data/* ~/data | |
- name: test | |
run: | | |
cd $GITHUB_WORKSPACE/g2/build | |
ctest --verbose --rerun-failed --output-on-failure | |