Skip to content

Commit

Permalink
[ci] Update Bazelisk version in dev container to v1.24.1
Browse files Browse the repository at this point in the history
This container pre-downloads Bazelisk for some reason, and the version
does not match what we're downloading in `bazelisk.sh`.

This old version is broken. Updating will fix the website build.

Signed-off-by: James Wainwright <[email protected]>
(cherry picked from commit 6460129)
  • Loading branch information
jwnrt committed Dec 12, 2024
1 parent 77a158c commit 80d9425
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bazelisk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ cd "$(dirname "$0")"
: "${BINDIR:=.bin}"
: "${BAZEL_BIN:=$(which bazel 2>/dev/null)}"

# Bazelisk (not Bazel) release. Keep this in sync with `util/container/Dockerfile`.
readonly release="v1.24.1"
declare -A hashes=(
# sha256sums for v1.11.0. Update this if you update the release.
# sha256sums for v1.24.1. Update this if you update the release.
[linux-amd64]="0aee09c71828b0012750cb9b689ce3575da8e230f265bf8d6dcd454eee6ea842"
)

Expand Down
2 changes: 1 addition & 1 deletion util/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ARG VERIBLE_VERSION=v0.0-3622-g07b310a3
# The RISCV toolchain version should match the release tag used in GitHub.
ARG RISCV_TOOLCHAIN_TAR_VERSION=20220210-1
# This should match the version in bazelish.sh.
ARG BAZELISK_VERSION=v1.11.0
ARG BAZELISK_VERSION=v1.24.1
# This should match the version in ci/install-package-dependencies.sh
ARG GCC_VERSION=9
# This should match the version of the lowRISC RISC-V toolchain.
Expand Down

0 comments on commit 80d9425

Please sign in to comment.