Skip to content

Commit

Permalink
add ClimaCoupler downstream experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
juliasloan25 committed Oct 22, 2024
1 parent bbdc774 commit 963deea
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/Downstream-ClimaCoupler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Runs a short (~300s) coupled AMIP simulation with the ClimaCoupler.jl package.
# Note that the ClimaCoupler.jl test suite is also run in the "Downstream" workflow.
name: Downstream-ClimaCoupler
on:
push:
branches:
- main
tags: '*'
pull_request:

# Needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
name: downstream ClimaCoupler.jl
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version:
- '1.10'
- '1.11'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: actions/checkout@v4
with:
repository: 'CliMA/ClimaCoupler.jl'
path: ClimaCoupler.jl
- run: |
julia --color=yes --project=ClimaCoupler.jl/experiments/ClimaEarth/ -e 'using Pkg; Pkg.instantiate()'
julia --color=yes --project=ClimaCoupler.jl/experiments/ClimaEarth/ -e 'using Pkg; Pkg.develop(; path = ".")'
julia --color=yes --project=ClimaCoupler.jl/experiments/ClimaEarth/ ClimaCoupler.jl/experiments/ClimaEarth/test/runtests.jl

0 comments on commit 963deea

Please sign in to comment.