Blacklisted O2 opacity for now, since the N2-O2 CIA pairing is behavi… #45
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 job installs AGNI and SOCRATES, and tests AGNI | |
# This occurs when a PR to main is created | |
name: Install SOCRATES+AGNI | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
name: Install and test | |
steps: | |
- uses: actions/checkout@v4 | |
# Setup system | |
- name: NetCDF | |
run: | | |
sudo apt update | |
sudo apt-get install libnetcdff-dev netcdf-bin gfortran gcc | |
# Setup AGNI | |
- name: Setup Julia | |
uses: julia-actions/setup-julia@v2 | |
with: | |
version: '1.10' | |
# Setup SOCRATES | |
- name: Get SOCRATES | |
uses: actions/checkout@v4 | |
with: | |
repository: 'nichollsh/SOCRATES' | |
path: 'socrates' | |
- name: Build SOCRATES | |
run: | | |
export LD_LIBRARY_PATH="" | |
cd socrates | |
./configure | |
./build_code | |
source set_rad_env | |
cd .. | |
- name: Build AGNI | |
run: | | |
source socrates/set_rad_env | |
export LD_LIBRARY_PATH="" | |
julia --project=. -e 'using Pkg; Pkg.build()' | |
- name: Test AGNI | |
run: | | |
source socrates/set_rad_env | |
export LD_LIBRARY_PATH="" | |
./test/runtests.jl | |