Skip to content

Add IntelLLVM support & add Spack-based CI #119

Add IntelLLVM support & add Spack-based CI

Add IntelLLVM support & add Spack-based CI #119

Workflow file for this run

# This is a GitHub CI workflow for the NCEPLIBS-ncio project.
#
# This workflow runs the build on Linux.
#
# Ed Hartnett 1/12/23
name: Linux
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
Linux:
runs-on: ubuntu-latest
env:
FC: gfortran-9
CC: gcc-9
steps:
- uses: actions/checkout@v2
- name: install-dependencies
run: |
sudo apt-get install libmpich-dev
- name: cache-netcdf
id: cache-netcdf
uses: actions/cache@v2
with:
path: ~/netcdf
key: netcdf-c-4.7.4-${{ runner.os }}1
- name: build-hdf5
if: steps.cache-netcdf.outputs.cache-hit != 'true'
run: |
export CC=mpicc
wget https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/hdf5-1.10.7/src/hdf5-1.10.7.tar.gz &> /dev/null
tar -xzf hdf5-1.10.7.tar.gz
pushd hdf5-1.10.7
./configure --prefix=${HOME}/netcdf --enable-parallel --disable-tools --disable-fortran --disable-cxx
make -j2
make install
- name: build-netcdf-c
if: steps.cache-netcdf.outputs.cache-hit != 'true'
run: |
export CC=mpicc
export CPPFLAGS=-I${HOME}/netcdf/include
export LDFLAGS=-L${HOME}/netcdf/lib
wget https://github.com/Unidata/netcdf-c/archive/refs/tags/v4.7.4.tar.gz
tar -xzf v4.7.4.tar.gz
cd netcdf-c-4.7.4
./configure --prefix=${HOME}/netcdf --disable-dap --disable-utilities
make -j2
make install
- name: build-netcdf-fortran
if: steps.cache-netcdf.outputs.cache-hit != 'true'
run: |
export PATH="${HOME}/netcdf/bin:$PATH"
export CC=mpicc
export FC=mpifort
export CPPFLAGS=-I${HOME}/netcdf/include
export LDFLAGS=-L${HOME}/netcdf/lib
wget https://github.com/Unidata/netcdf-fortran/archive/v4.5.3.tar.gz &> /dev/null
tar -xzf v4.5.3.tar.gz
pushd netcdf-fortran-4.5.3
./configure --prefix=${HOME}/netcdf
make -j2
make install
- name: build and test
run: |
export FC=mpifort
export CC=mpicc
mkdir build && cd build
cmake -DCMAKE_PREFIX_PATH='~;~/netcdf' ..
make -j2 VERBOSE=1
ctest --output-on-failure