From 73e2f4f68f1705ec8abb21112f438275d0f75dbb Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 24 Nov 2024 20:10:46 -0500 Subject: [PATCH 1/2] Don't run the precompile workload on Julia 1.9 --- src/HTTP.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HTTP.jl b/src/HTTP.jl index b997162f..90734934 100644 --- a/src/HTTP.jl +++ b/src/HTTP.jl @@ -632,7 +632,7 @@ function Base.parse(::Type{T}, str::AbstractString)::T where T <: Message end # only run if precompiling -if VERSION >= v"1.9.0-0" && ccall(:jl_generating_output, Cint, ()) == 1 +if VERSION >= v"1.10.0-" && ccall(:jl_generating_output, Cint, ()) == 1 include("precompile.jl") end From 783a8384cf076766c62503ff3c43b6fd6a7e7d54 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 24 Nov 2024 20:29:38 -0500 Subject: [PATCH 2/2] Run CI on Julia 1.9 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 872dd67b..469f890a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,7 @@ jobs: version: - 'min' - 'lts' + - '1.9' - '1' # automatically expands to the latest stable 1.x release of Julia - 'nightly' os: