starting to rebuild cmake build system #80
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 the first working workflow for the wgrib2 project. | |
# | |
# Kyle Gerheiser, Ed Hartnett | |
name: Build | |
on: | |
push: | |
branches: | |
- feature/cmake | |
- develop | |
pull_request: | |
branches: | |
- feature/cmake | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
env: | |
FC: gfortran-9 | |
CC: gcc-9 | |
steps: | |
- name: install-netcdf | |
run: | | |
sudo apt-get update | |
sudo apt-get install libnetcdf-dev libnetcdff-dev netcdf-bin pkg-config | |
- name: install-png | |
run: | | |
sudo apt-get install libpng-dev | |
- name: install-autotools | |
run: | | |
sudo apt-get install autotools-dev | |
sudo apt-get install autoconf | |
- name: checkout-jasper | |
uses: actions/checkout@v2 | |
with: | |
repository: jasper-software/jasper | |
path: jasper | |
ref: version-1.900.1 | |
- name: build-jasper | |
if: steps.cache-jasper.outputs.cache-hit != 'true' | |
run: | | |
cd jasper | |
./configure --prefix=$HOME/Jasper | |
make | |
make install | |
- name: checkout-sp | |
uses: actions/checkout@v2 | |
with: | |
repository: NOAA-EMC/NCEPLIBS-sp | |
path: sp | |
ref: v2.3.3 | |
- name: build-sp | |
run: | | |
cd sp | |
mkdir build | |
cd build | |
cmake -DCMAKE_INSTALL_PREFIX=~/sp .. | |
make -j2 | |
make install | |
- name: checkout-ip2 | |
uses: actions/checkout@v2 | |
with: | |
repository: NOAA-EMC/NCEPLIBS-ip2 | |
path: ip2 | |
ref: develop | |
- name: build-ip2 | |
run: | | |
cd ip2 | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_INSTALL_PREFIX=~/ip2 -DCMAKE_PREFIX_PATH=~ | |
make -j2 | |
make install | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
path: wgrib2 | |
- name: build | |
run: | | |
cd wgrib2 | |
make VERBOSE=1 |