add ClimaCoupler downstream test #2
Workflow file for this run
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: Downstream | ||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: '*' | ||
pull_request: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
test: | ||
name: downstream ${{ package }} | ||
Check failure on line 15 in .github/workflows/downstream.yml GitHub Actions / DownstreamInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
package: | ||
- 'ClimaCoupler.jl' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: '1.10' | ||
- uses: julia-actions/cache@v2 | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: 'CliMA/${{ package }}' | ||
path: ${{ package }} | ||
- run: | | ||
julia --color=yes --project=${{ package }}/experiments/ClimaEarth/ -e 'using Pkg; Pkg.instantiate()' | ||
julia --color=yes --project=${{ package }}/experiments/ClimaEarth/ -e 'using Pkg; Pkg.develop(; path = ".")' | ||
julia --color=yes --project=${{ package }}/experiments/ClimaEarth/ experiments/ClimaEarth/run_amip.jl --config_file ${{ package }}/config/ci_configs/target_amip_albedo_function.yml --job_id target_amip_albedo_function |