From 3e3d6c58fb965efa8388e94f11208ea04df8980a Mon Sep 17 00:00:00 2001 From: Simeon Ehrig Date: Thu, 10 Oct 2024 13:53:16 +0200 Subject: [PATCH] upgrade integration tests to Julia 1.10 (#76) --- .ci/integTestGen/src/integTestGen.jl | 2 +- .ci/integTestGen/test/generate_job_yaml.jl | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/integTestGen/src/integTestGen.jl b/.ci/integTestGen/src/integTestGen.jl index 0dfa26e..525a2f8 100644 --- a/.ci/integTestGen/src/integTestGen.jl +++ b/.ci/integTestGen/src/integTestGen.jl @@ -191,7 +191,7 @@ function generate_job_yaml!( push!(script, "julia --project=. -e 'import Pkg; Pkg.test(; coverage = true)'") current_job_yaml = Dict( - "image" => "julia:1.9", + "image" => "julia:1.10", "interruptible" => true, "tags" => ["cpuonly"], "script" => script, diff --git a/.ci/integTestGen/test/generate_job_yaml.jl b/.ci/integTestGen/test/generate_job_yaml.jl index d3f0528..5a4f1be 100644 --- a/.ci/integTestGen/test/generate_job_yaml.jl +++ b/.ci/integTestGen/test/generate_job_yaml.jl @@ -29,7 +29,7 @@ end expected_job_yaml = Dict() expected_job_yaml["IntegrationTestQEDcore"] = Dict( - "image" => "julia:1.9", + "image" => "julia:1.10", "interruptible" => true, "tags" => ["cpuonly"], "script" => [ @@ -71,7 +71,7 @@ end expected_job_yaml = Dict() expected_job_yaml["IntegrationTestQEDcore"] = Dict( - "image" => "julia:1.9", + "image" => "julia:1.10", "interruptible" => true, "tags" => ["cpuonly"], "script" => [ @@ -118,7 +118,7 @@ end expected_job_yaml = Dict() expected_job_yaml["IntegrationTestQEDcore"] = Dict( - "image" => "julia:1.9", + "image" => "julia:1.10", "interruptible" => true, "tags" => ["cpuonly"], "script" => [ @@ -153,7 +153,7 @@ end ) expected_job_yaml["IntegrationTestQEDcoreReleaseTest"] = Dict( - "image" => "julia:1.9", + "image" => "julia:1.10", "interruptible" => true, "tags" => ["cpuonly"], "allow_failure" => true,