Skip to content

Commit

Permalink
Merge pull request #558 from CliMA/js/downstream
Browse files Browse the repository at this point in the history
add coupler AMIP downstream test; add Julia 1.11 to downstream tests
  • Loading branch information
juliasloan25 authored Oct 22, 2024
2 parents 4ee66d8 + 6197020 commit 0fae4ea
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,29 @@ jobs:
matrix:
package:
- 'ClimaAtmos.jl'
- 'ClimaCoupler.jl'
version:
- '1.10'
- '1.11'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1.10'
version: ${{ matrix.version }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: actions/checkout@v4
with:
repository: 'CliMA/${{ matrix.package }}'
path: ${{ matrix.package }}
- run: |
- if: matrix.package != 'ClimaCoupler.jl'
run: |
julia --color=yes --project=${{ matrix.package }} -e 'using Pkg; Pkg.instantiate()'
julia --color=yes --project=${{ matrix.package }} -e 'using Pkg; Pkg.develop(; path = ".")'
julia --color=yes --project=${{ matrix.package }} -e 'using Pkg; Pkg.test()'
- if: matrix.package == '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 0fae4ea

Please sign in to comment.