Skip to content

Commit e05d66c

Browse files
authored
Revert "Add lts tag (#32)" (#36)
This reverts commit f636fd2.
1 parent cefe772 commit e05d66c

File tree

3 files changed

+1
-15
lines changed

3 files changed

+1
-15
lines changed

.github/workflows/CI.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ permissions:
2323
env:
2424
aws_region: us-east-1
2525
s3_bucket: julialang2
26-
JULIA_LTS: 1.10
27-
26+
2827
jobs:
2928
package-tests:
3029
name: Package tests

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ More info: https://github.com/JuliaLang/julia/issues/33817
77
To 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.
88
You 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)

src/VersionsJSONUtil.jl

-11
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,6 @@ function is_stable(v::VersionNumber)
122122
return v.prerelease == () && v.build == ()
123123
end
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
131126
function 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)"
255244
end
256245

0 commit comments

Comments
 (0)