Skip to content

Commit

Permalink
buildkite CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aelligp committed Oct 29, 2024
1 parent d40748d commit f933ff6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
10 changes: 7 additions & 3 deletions test/test_diffusion2D_multiphase_MPI.jl
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,11 @@ function diffusion_2D(figdir; nx=32, ny=32, lx=100e3, ly=100e3, Cp0=1.2e3, K0=3.
end

@suppress begin
figdir="MPI_Diffusion2D"
n = 32
diffusion_2D(figdir; nx=n, ny=n)
if backend_JR == CPUBackend
figdir="MPI_Diffusion2D"
n = 32
diffusion_2D(figdir; nx=n, ny=n)
else
println("This test is only for CPU CI yet")
end
end
6 changes: 5 additions & 1 deletion test/test_diffusion3D_multiphase_MPI.jl
Original file line number Diff line number Diff line change
Expand Up @@ -229,5 +229,9 @@ function diffusion_3D(;
end

@suppress begin
diffusion_3D()
if backend_JR == CPUBackend
diffusion_3D()
else
println("This test is only for CPU CI yet")
end
end

0 comments on commit f933ff6

Please sign in to comment.