File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,8 @@ permissions:
23
23
env :
24
24
aws_region : us-east-1
25
25
s3_bucket : julialang2
26
- JULIA_LTS : ' 1.10'
26
+ JULIA_LTS : ' 1.0 1.6 1.10'
27
+
27
28
28
29
jobs :
29
30
package-tests :
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ 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
- ### Set LTS tag
10
+ ### Setting the LTS field
11
11
12
- The current Julia LTS version is set via the ` JULIA_LTS ` variable in the [ CI workflow] ( .github/workflows/CI.yml ) .
12
+ Julia LTS versions are set via the ` JULIA_LTS ` variable in the [ CI workflow] ( .github/workflows/CI.yml ) .
13
13
14
14
### GitHub's UI
15
15
Original file line number Diff line number Diff line change @@ -123,8 +123,8 @@ function is_stable(v::VersionNumber)
123
123
end
124
124
125
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)
126
+ lts_list = VersionNumber .( split ( ENV [" JULIA_LTS" ], " " ) )
127
+ return any ( lts -> lts . major === v. major && lts. minor === v. minor && isempty (v. prerelease), lts_list )
128
128
end
129
129
130
130
# Get list of tags from the Julia repo
You can’t perform that action at this time.
0 commit comments