File tree 2 files changed +10
-7
lines changed
2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 43
43
- ubuntu-latest
44
44
steps :
45
45
- uses : actions/checkout@v3
46
+ - name : Install dependencies
47
+ if : matrix.os == 'macos-latest'
48
+ run : |
49
+ brew install julia subversion
46
50
- name : Create
47
51
run : |
48
52
git config user.name "github-actions[bot]"
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ latest_julia_version() {
111
111
--location \
112
112
--show-error \
113
113
--silent \
114
- https://api.github.com/repos/JuliaLang/julia/releases | \
114
+ https://api.github.com/repos/JuliaLang/julia/releases/latest | \
115
115
grep -o ' "tag_name": "v.*"' | \
116
116
head -n 1 | \
117
117
sed -e ' s/^"tag_name": "v//g' \
@@ -132,12 +132,11 @@ ensure_julia() {
132
132
Darwin)
133
133
julia_binary_url+=" /mac"
134
134
case " $( arch) " in
135
- # TODO
136
- # aarch64)
137
- # julia_binary_url+="/aarch64"
138
- # julia_binary_url+="/${julia_version_series}"
139
- # julia_binary_url+="/julia-${julia_version}-macaarch64.dmg"
140
- # ;;
135
+ arm64)
136
+ julia_binary_url+=" /aarch64"
137
+ julia_binary_url+=" /${julia_version_series} "
138
+ julia_binary_url+=" /julia-${julia_version} -macaarch64.tar.gz"
139
+ ;;
141
140
i386)
142
141
julia_binary_url+=" /x64"
143
142
julia_binary_url+=" /${julia_version_series} "
You can’t perform that action at this time.
0 commit comments