Skip to content

Upgrade bazel version to 7.5.0 (latest 7.x) #1532

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

Closed
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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,13 +240,13 @@ jobs:
- run:
name: install bazel
command: |
apt-get install -q -y bazel-7.4.1
apt-get install -q -y bazel-7.5.0
- run: test/test_bazel.sh

test-bazel-mac-arm64:
executor: mac_arm64
environment:
USE_BAZEL_VERSION: "7.4.1"
USE_BAZEL_VERSION: "7.5.0"
steps:
- checkout
- run:
Expand All @@ -262,7 +262,7 @@ jobs:
environment:
PYTHONUNBUFFERED: "1"
EMSDK_NOTTY: "1"
USE_BAZEL_VERSION: "5.4.0"
USE_BAZEL_VERSION: "7.5.0"
steps:
- checkout
- run:
Expand Down
2 changes: 1 addition & 1 deletion test/test_bazel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ FAILMSG="!!! scripts/update_bazel_workspace.py needs to be run !!!"
grep ${VER} bazel/revisions.bzl || (echo ${FAILMSG} && false)
grep ${HASH} bazel/revisions.bzl || (echo ${FAILMSG} && false)

BAZEL_CMD=$(which bazel || which bazel-7.4.1)
BAZEL_CMD=$(which bazel || which bazel-7.5.0)

cd bazel
$BAZEL_CMD build //hello-world:hello-world-wasm
Expand Down