File tree Expand file tree Collapse file tree 3 files changed +1
-15
lines changed Expand file tree Collapse file tree 3 files changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,7 @@ permissions:
2323env :
2424 aws_region : us-east-1
2525 s3_bucket : julialang2
26- JULIA_LTS : 1.10
27-
26+
2827jobs :
2928 package-tests :
3029 name : Package tests
Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ More info: https://github.com/JuliaLang/julia/issues/33817
77To trigger a rebuild of the ` versions.json ` file and to upload it to S3, you need to manually trigger the ` CI ` workflow in this repo.
88You can either trigger it through the GitHub UI or via an authenticated HTTP request.
99
10- The current Julia LTS release is set via the ` JULIA_LTS ` variable in the [ CI workflow] ( .github/workflows/CI.yml ) .
11-
1210### GitHub's UI
1311
1412![ grafik] ( https://user-images.githubusercontent.com/20866761/127783220-fd8167db-5051-4a18-b70a-ea42085a7cb5.png )
Original file line number Diff line number Diff line change @@ -122,11 +122,6 @@ function is_stable(v::VersionNumber)
122122 return v. prerelease == () && v. build == ()
123123end
124124
125- function is_lts (v:: VersionNumber )
126- lts = VersionNumber (ENV [" JULIA_LTS" ])
127- return lts. major === v. major && lts. minor === v. minor && isempty (v. prerelease)
128- end
129-
130125# Get list of tags from the Julia repo
131126function get_tags ()
132127 @info (" Probing for tag list..." )
@@ -245,12 +240,6 @@ function main(out_path)
245240 rm (filepath)
246241 end
247242 end
248- @info (" Adding lts entry..." )
249- lts_version = maximum (filter (is_lts, keys (meta)))
250- push! (meta, " lts" => meta[lts_version])
251- open (out_path, " w" ) do io
252- JSON. print (io, meta, 2 )
253- end
254243 @info " Tried $(number_urls_tried) versions, successfully downloaded $(number_urls_success) "
255244end
256245
You can’t perform that action at this time.
0 commit comments