Am5 ci #31
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
name: AM5 test | |
on: | |
push: | |
tags: | |
- '*alpha*' | |
- '*beta*' | |
pull_request: | |
workflow_dispatch: | |
# cancel running jobs if theres a newer push | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
compile_AM5: | |
runs-on: [self-hosted, pw-platform] | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Setup source and build directories | |
run: | | |
rm -rf am5_src am5_build | |
mkdir am5_src | |
mkdir am5_build | |
ln -s /contrib/am5/ci/am5f8d1r0/src/am5_phys am5_src/am5_phys | |
ln -s /contrib/am5/ci/am5f8d1r0/src/atmos_drivers am5_src/atmos_drivers | |
ln -s /contrib/am5/ci/am5f8d1r0/src/GFDL_atmos_cubed_sphere am5_src/GFDL_atmos_cubed_sphere | |
ln -s /contrib/am5/ci/am5f8d1r0/src/GRTCODE am5_src/GRTCODE | |
ln -s /contrib/am5/ci/am5f8d1r0/src/ice_param am5_src/ice_param | |
ln -s /contrib/am5/ci/am5f8d1r0/src/land_lad2 am5_src/land_lad2 | |
ln -s /contrib/am5/ci/am5f8d1r0/src/mom6 am5_src/mom6 | |
ln -s /contrib/am5/ci/am5f8d1r0/src/ocean_BGC am5_src/ocean_BGC | |
ln -s /contrib/am5/ci/am5f8d1r0/src/rte-ecckd am5_src/rte-ecckd | |
ln -s /contrib/am5/ci/am5f8d1r0/src/rte-rrtmgp am5_src/rte-rrtmgp | |
ln -s /contrib/am5/ci/am5f8d1r0/src/coupler am5_src/coupler | |
- name: Checkout FMS | |
uses: actions/checkout@v4 | |
with: | |
path: am5_src/FMS | |
- name: Build AM5 in Intel container | |
run: /contrib/am5/ci/am5f8d1r0/container_build.sh | |
- name: Check build succeeded | |
run: stat ${GITHUB_WORKSPACE}/am5_build/fms_am5f7b12r1_compile.x | |
run_AM5: | |
runs-on: [self-hosted, pw-platform] | |
strategy: | |
fail-fast: false | |
needs: [compile_AM5] | |
steps: | |
- name: Setup run directory | |
run: | | |
cd am5_run | |
rm -f *.nc.* RESTART/*.nc.* | |
- name: Launch runscript | |
run: /contrib/am5/ci/am5f8d1r0/run.sh |