Skip to content

DRAFT: fixes all read of the same data by having single reader broadcast #45

DRAFT: fixes all read of the same data by having single reader broadcast

DRAFT: fixes all read of the same data by having single reader broadcast #45

name: Compile SHiELD SOLO and run tests
on:
pull_request:
branches:
- main
jobs:
checkout:
runs-on: [self-hosted]
name: Checkout Code
steps:
- run: /contrib/fv3/FV3CIScripts/checkout.sh $GITHUB_REF
build:
runs-on: [self-hosted]
name: SOLO SHiELD build
needs: [checkout]
strategy:
fail-fast: true
max-parallel: 3
matrix:
runpath: [/contrib/fv3/FV3CIScripts/]
runscript: [swcompile.sh, nhcompile.sh, hydrocompile.sh]
steps:
- env:
RUNPATH: ${{ matrix.runpath }}
RUNSCRIPT: ${{ matrix.runscript }}
run: $RUNPATH/$RUNSCRIPT $GITHUB_REF
test:
runs-on: [self-hosted]
name: SOLO SHiELD test suite
needs: [checkout, build]
strategy:
fail-fast: false
max-parallel: 3
matrix:
runpath: [/contrib/fv3/FV3CIScripts/]
runscript: [C128r20.solo.superC.sh]
steps:
- env:
RUNPATH: ${{ matrix.runpath }}
RUNSCRIPT: ${{ matrix.runscript }}
run: $RUNPATH/$RUNSCRIPT $GITHUB_REF