Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update go to 1.22.4 in release-ci image #70

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dockerfiles/release-ci-aarch64.DockerFile
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ RUN /root/miniforge3/bin/conda install -c conda-forge lld nasm cmake gxx==11.4.0
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y

# install go
ARG GO_VERSION=1.22.1
ARG GO_SHA256SUM=e56685a245b6a0c592fc4a55f0b7803af5b3f827aaa29feab1f40e491acf35b8
ARG GO_VERSION=1.22.4
ARG GO_SHA256SUM=a8e177c354d2e4a1b61020aca3562e27ea3e8f8247eca3170e3fa1e0c2f9e771
RUN url="https://golang.google.cn/dl/go${GO_VERSION}.linux-arm64.tar.gz"; \
wget --no-check-certificate -O go.tgz "$url"; \
echo "${GO_SHA256SUM} *go.tgz" | sha256sum -c -; \
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/release-ci.DockerFile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ RUN /root/miniconda3/bin/conda install -c conda-forge lld nasm cmake gxx==11.4.0
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y

# install go
ARG GO_VERSION=1.22.1
ARG GO_SHA256SUM="aab8e15785c997ae20f9c88422ee35d962c4562212bb0f879d052a35c8307c7f"
ARG GO_VERSION=1.22.4
ARG GO_SHA256SUM="ba79d4526102575196273416239cca418a651e049c2b099f3159db85e7bade7d"
RUN url="https://golang.google.cn/dl/go${GO_VERSION}.linux-amd64.tar.gz"; \
wget --no-check-certificate -O go.tgz "$url"; \
echo "${GO_SHA256SUM} *go.tgz" | sha256sum -c -; \
Expand Down
Loading