File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 27
27
- ' ClimaCoupler.jl'
28
28
- ' ClimaDiagnostics.jl'
29
29
- ' ClimaLand.jl'
30
- - ' ClimaTimeSteppers .jl'
30
+ - ' ClimaTimesteppers .jl'
31
31
- ' KinematicDriver.jl'
32
32
- ' ClimaDiagnostics.jl'
33
33
- ' ClimaUtilities.jl'
42
42
with :
43
43
repository : ' CliMA/${{ matrix.package }}'
44
44
path : ${{ matrix.package }}
45
- - run : |
45
+
46
+ # The test suite for ClimaTimesteppers depends on ClimaCore, not
47
+ # ClimaTimesteppers itself. If we dev-ed ClimaCore in ClimaTimesteppers,
48
+ # the aqua test would fail because we never use ClimaCore.
49
+ - if : matrix.package != 'ClimaTimesteppers.jl'
50
+ run : |
46
51
julia --color=yes --project=${{ matrix.package }} -e 'using Pkg; Pkg.instantiate()'
47
52
julia --color=yes --project=${{ matrix.package }} -e 'using Pkg; Pkg.develop(; path = ".")'
48
53
julia --color=yes --project=${{ matrix.package }} -e 'using Pkg; Pkg.test()'
54
+
55
+ - if : matrix.package == 'ClimaTimesteppers.jl'
56
+ run : |
57
+ julia --color=yes --project=ClimaTimesteppers.jl/test -e 'using Pkg; Pkg.instantiate()'
58
+ julia --color=yes --project=ClimaTimesteppers.jl/test -e 'using Pkg; Pkg.develop(; path = ".")'
59
+ julia --color=yes --project=ClimaTimesteppers.jl/test ClimaTimesteppers.jl/test/runtests.jl
You can’t perform that action at this time.
0 commit comments