Commit e05d66c 1 parent cefe772 commit e05d66c Copy full SHA for e05d66c
File tree 3 files changed +1
-15
lines changed
3 files changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,7 @@ permissions:
23
23
env :
24
24
aws_region : us-east-1
25
25
s3_bucket : julialang2
26
- JULIA_LTS : 1.10
27
-
26
+
28
27
jobs :
29
28
package-tests :
30
29
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
7
7
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.
8
8
You can either trigger it through the GitHub UI or via an authenticated HTTP request.
9
9
10
- The current Julia LTS release is set via the ` JULIA_LTS ` variable in the [ CI workflow] ( .github/workflows/CI.yml ) .
11
-
12
10
### GitHub's UI
13
11
14
12
![ 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)
122
122
return v. prerelease == () && v. build == ()
123
123
end
124
124
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
-
130
125
# Get list of tags from the Julia repo
131
126
function get_tags ()
132
127
@info (" Probing for tag list..." )
@@ -245,12 +240,6 @@ function main(out_path)
245
240
rm (filepath)
246
241
end
247
242
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
254
243
@info " Tried $(number_urls_tried) versions, successfully downloaded $(number_urls_success) "
255
244
end
256
245
You can’t perform that action at this time.
0 commit comments