Bugfix/narnold1/turb budget fix #1579
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: Build Tests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled, unlabeled] | |
# Do not run if the only files changed cannot affect the build | |
paths-ignore: | |
- "**.md" | |
- "**.pro" | |
- "**.sh" | |
- "**.perl" | |
- ".github/CODEOWNERS" | |
jobs: | |
build_gcm: | |
name: Build GEOSgcm | |
if: "!contains(github.event.pull_request.labels.*.name, '0 diff trivial')" | |
runs-on: ubuntu-latest | |
container: | |
image: gmao/ubuntu20-geos-env-mkl:v7.7.0-openmpi_4.1.4-gcc_12.1.0 | |
credentials: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
env: | |
LANGUAGE: en_US.UTF-8 | |
LC_ALL: en_US.UTF-8 | |
LANG: en_US.UTF-8 | |
LC_TYPE: en_US.UTF-8 | |
OMPI_ALLOW_RUN_AS_ROOT: 1 | |
OMPI_ALLOW_RUN_AS_ROOT_CONFIRM: 1 | |
OMPI_MCA_btl_vader_single_copy_mechanism: none | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout GCM | |
uses: actions/checkout@v3 | |
with: | |
repository: GEOS-ESM/GEOSgcm | |
fetch-depth: 1 | |
- name: Set all directories as git safe | |
run: | | |
git config --global --add safe.directory '*' | |
- name: Versions etc. | |
run: | | |
gfortran --version | |
mpirun --version | |
echo $BASEDIR | |
echo ${GITHUB_HEAD_REF} | |
- name: Mepo clone external repos | |
run: | | |
mepo clone | |
mepo status | |
mepo develop GEOSgcm_GridComp GEOSgcm_App | |
mepo status | |
- name: Update GEOSgcm_GridComp branch | |
if: github.head_ref != 'main' && github.head_ref != 'develop' | |
run: | | |
mepo checkout-if-exists ${GITHUB_HEAD_REF} | |
mepo status | |
- name: CMake | |
run: | | |
mkdir build | |
cd build | |
cmake .. -DBASEDIR=$BASEDIR/Linux -DCMAKE_Fortran_COMPILER=gfortran -DCMAKE_BUILD_TYPE=Debug -DMPIEXEC_PREFLAGS='--oversubscribe' | |
- name: Build | |
run: | | |
cd build | |
make -j4 install |