Skip to content

Commit

Permalink
upgrade integration tests to Julia 1.10 (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimeonEhrig authored Oct 10, 2024
1 parent 975d7dc commit 3e3d6c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ci/integTestGen/src/integTestGen.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
8 changes: 4 additions & 4 deletions .ci/integTestGen/test/generate_job_yaml.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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" => [
Expand Down Expand Up @@ -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" => [
Expand Down Expand Up @@ -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" => [
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 3e3d6c5

Please sign in to comment.