Conversation
4311c18 to
7d78183
Compare
7d78183 to
0db37f0
Compare
imreddyTeja
approved these changes
Nov 11, 2025
| julia --color=yes --project=experiments/ClimaEarth -e 'using Pkg; Pkg.instantiate()' | ||
| julia --color=yes --project=experiments/ClimaEarth -e 'using Pkg; Pkg.develop(; path = ".")' | ||
| julia --color=yes --project=experiments/ClimaEarth experiments/ClimaEarth/test/runtests.jl | ||
| julia -O0 --color=yes --project=experiments/ClimaEarth -e 'using Pkg; Pkg.instantiate()' |
Member
There was a problem hiding this comment.
I wonder if this improvement is big enough to make it worth not using julia-actions/julia-runtest@v1, and instead manually running tests like is done here
Member
Author
There was a problem hiding this comment.
I was thinking about that too. I'm not sure if there's really any benefit to using julia-actions/julia-runtest. For ClimaCoupler though, most of the test time is dominated by `experiments/ClimaEarth/runtests.jl, which we call manually. But I think that would have a bigger impact in e.g. ClimaLand
nefrathenrici
approved these changes
Nov 11, 2025
0db37f0 to
f956b7c
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
I also added
climacoupler-cito the Clear Depot pipeline. Now we can use the generic clear depot instead of the coupler-specific one (which I'll delete soon). The defaultclear depotcan be used to clear this pipeline's depot by setting the environment variableslug=climacoupler-ci.Also minimized optimization of everything in the regular CI by passing the -O0 flag (as opposed to the default -O2 optimization level).
For timing examples, see CI runs with -O0 vs default. The largest change is in GPU CMIP, which goes from 42 to 28 minutes. Some slabplanet runs and the sea breeze experiment become slower because they're run for 1+days. This option seems to only be useful for tests and experiments that run for "a few" steps (maybe <5, depending on the configuration).