File tree 1 file changed +6
-8
lines changed 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -19,18 +19,18 @@ all_existing_versions = [
19
19
v " 1.7.3" ,
20
20
v " 1.8.5" ,
21
21
v " 1.9.4" ,
22
- v " 1.10.5 " ,
23
- v " 1.11.0 "
22
+ v " 1.10.7 " ,
23
+ v " 1.11.2 "
24
24
]
25
25
26
26
all_compatible_versions = filter (i -> i in version_spec, all_existing_versions)
27
27
28
28
if ENV [" INCLUDE_RELEASE_VERSIONS" ] == " true"
29
- push! (versions, v " 1.11.0 " )
29
+ push! (versions, v " 1.11.2 " )
30
30
end
31
31
32
32
if ENV [" INCLUDE_LTS_VERSIONS" ] == " true"
33
- push! (versions, v " 1.10.5 " )
33
+ push! (versions, v " 1.10.7 " )
34
34
end
35
35
36
36
if ENV [" INCLUDE_ALL_COMPATIBLE_MINOR_VERSIONS" ] == " true"
@@ -64,10 +64,8 @@ function add_matrix_entries!(results, v)
64
64
end
65
65
66
66
if ENV [" INCLUDE_MACOS_X64" ] == " true"
67
- if v== v " 1.4.2"
68
- # For some reason Julia 1.4 doesn't work on macos-13, so we downgrade to macos-12
69
- push! (results, Dict (" os" => " macos-12" , " juliaup-channel" => " $v ~x64" ))
70
- else
67
+ # There is currently no known way to run Julia 1.4 on a Mac GitHub runner, so we skip
68
+ if v != v " 1.4.2"
71
69
push! (results, Dict (" os" => " macos-13" , " juliaup-channel" => " $v ~x64" ))
72
70
end
73
71
end
You can’t perform that action at this time.
0 commit comments