Skip to content

Commit 88e200c

Browse files
Update to 1.6.0-rc1
1 parent 279b072 commit 88e200c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

1.6-rc/buster/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ENV PATH $JULIA_PATH/bin:$PATH
1717
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
1818

1919
# https://julialang.org/downloads/
20-
ENV JULIA_VERSION 1.6.0-beta1
20+
ENV JULIA_VERSION 1.6.0-rc1
2121

2222
RUN set -eux; \
2323
\
@@ -32,18 +32,18 @@ RUN set -eux; \
3232
fi; \
3333
\
3434
# https://julialang.org/downloads/#julia-command-line-version
35-
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.0-beta1.sha256
35+
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.0-rc1.sha256
3636
# this "case" statement is generated via "update.sh"
3737
dpkgArch="$(dpkg --print-architecture)"; \
3838
case "${dpkgArch##*-}" in \
3939
# amd64
40-
amd64) tarArch='x86_64'; dirArch='x64'; sha256='30b214c7f544c6589a20104eaa6764eb368cadac5fa834b7454b747043e5a2b8' ;; \
40+
amd64) tarArch='x86_64'; dirArch='x64'; sha256='72847bd2b4d4db9d5970512f79fd5a7f76ad56cf0f2ea5a80eff032364b19c8b' ;; \
4141
# arm64v8
42-
arm64) tarArch='aarch64'; dirArch='aarch64'; sha256='6f4a0d63c7bc69b5e649710c31affe7e39a554c895235df50eddc9d26bcc3910' ;; \
42+
arm64) tarArch='aarch64'; dirArch='aarch64'; sha256='4f11cad2b0e2d64980b1cb66a327ed19d9ffadabedb6391ea901ccdc45f983b5' ;; \
4343
# i386
44-
i386) tarArch='i686'; dirArch='x86'; sha256='de8c8e3560974196c09b4a01c91591ce4faf8c77daf080fb37b9e2759c5df29d' ;; \
44+
i386) tarArch='i686'; dirArch='x86'; sha256='bf131902325559594da0a77f23d58a3161b4280f9d3b7c970614bf1b258431c4' ;; \
4545
# ppc64le
46-
ppc64el) tarArch='ppc64le'; dirArch='ppc64le'; sha256='13f6192990d1c44039444707d8753d80b299c3fa05625ee9ca1680413ae344cd' ;; \
46+
ppc64el) tarArch='ppc64le'; dirArch='ppc64le'; sha256='1e6c7960394d60bbef4f5813db421b7dbfce8bdcc9218657d52256cb56e9fad6' ;; \
4747
*) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding Julia binary release"; exit 1 ;; \
4848
esac; \
4949
\

1.6-rc/windows/windowsservercore-1809/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM mcr.microsoft.com/windows/servercore:1809
33
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
44
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
55

6-
ENV JULIA_VERSION 1.6.0-beta1
7-
ENV JULIA_SHA256 f308a7b7e877a232a19d47d78b4bf55a974c9c24052ab867f346a151a8a91f90
6+
ENV JULIA_VERSION 1.6.0-rc1
7+
ENV JULIA_SHA256 7a81fa6d83d2e15b38b794006d2bf4731134c530113584d3b40497209d100bd4
88

99
RUN $url = ('https://julialang-s3.julialang.org/bin/winnt/x64/{1}/julia-{0}-win64.exe' -f $env:JULIA_VERSION, ($env:JULIA_VERSION.Split('.')[0..1] -Join '.')); \
1010
Write-Host ('Downloading {0} ...' -f $url); \

1.6-rc/windows/windowsservercore-ltsc2016/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2016
33
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
44
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
55

6-
ENV JULIA_VERSION 1.6.0-beta1
7-
ENV JULIA_SHA256 f308a7b7e877a232a19d47d78b4bf55a974c9c24052ab867f346a151a8a91f90
6+
ENV JULIA_VERSION 1.6.0-rc1
7+
ENV JULIA_SHA256 7a81fa6d83d2e15b38b794006d2bf4731134c530113584d3b40497209d100bd4
88

99
RUN $url = ('https://julialang-s3.julialang.org/bin/winnt/x64/{1}/julia-{0}-win64.exe' -f $env:JULIA_VERSION, ($env:JULIA_VERSION.Split('.')[0..1] -Join '.')); \
1010
Write-Host ('Downloading {0} ...' -f $url); \

0 commit comments

Comments
 (0)