Skip to content

Commit

Permalink
chore: julia 1.6.1 -> 1.7.1 (#221)
Browse files Browse the repository at this point in the history
* julia 1.6.1 -> 1.7.1

* Update build_and_push_to_docker.yml
  • Loading branch information
gavin-k-lee authored Jan 31, 2022
1 parent 7fc800b commit 0475e6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_push_to_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ jobs:
fail-fast: true
matrix:
JULIAVERSIONS:
- 1.6.1
- 1.7.1

steps:
- name: Docker Login
Expand Down
4 changes: 2 additions & 2 deletions docker/julia/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ USER root
ENV JULIA_DEPOT_PATH=/opt/julia
ENV JULIA_PKGDIR=/opt/julia
# If this changes, you also need to change the checksum below
ENV JULIA_VERSION=1.6.1
ENV JULIA_VERSION=1.7.1

RUN mkdir /opt/julia-${JULIA_VERSION} && \
cd /tmp && \
wget -q https://julialang-s3.julialang.org/bin/linux/x64/`echo ${JULIA_VERSION} | cut -d. -f 1,2`/julia-${JULIA_VERSION}-linux-x86_64.tar.gz && \
echo "7c888adec3ea42afbfed2ce756ce1164a570d50fa7506c3f2e1e2cbc49d52506 *julia-${JULIA_VERSION}-linux-x86_64.tar.gz" | sha256sum -c - && \
echo "44658e9c7b45e2b9b5b59239d190cca42de05c175ea86bc346c294a8fe8d9f11 *julia-${JULIA_VERSION}-linux-x86_64.tar.gz" | sha256sum -c - && \
tar xzf julia-${JULIA_VERSION}-linux-x86_64.tar.gz -C /opt/julia-${JULIA_VERSION} --strip-components=1 && \
rm /tmp/julia-${JULIA_VERSION}-linux-x86_64.tar.gz
RUN ln -fs /opt/julia-*/bin/julia /usr/local/bin/julia
Expand Down

0 comments on commit 0475e6b

Please sign in to comment.