Skip to content

Commit 722cc9d

Browse files
committed
bazel/macos: Bump version -> 7 and update rules_python
Signed-off-by: Ryan Northey <[email protected]>
1 parent 9be9637 commit 722cc9d

File tree

126 files changed

+2762
-1533
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+2762
-1533
lines changed

Diff for: .bazelrc

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
common --noenable_bzlmod
2+
13
# Pass CC, CXX and PATH from the environment.
24
build --action_env=CC
35
build --action_env=CXX

Diff for: .bazelversion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.2.0
1+
7.1.0

Diff for: .github/workflows/format.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- uses: actions/checkout@v2
8888

8989
- name: Install dependencies
90-
run: cargo install cargo-raze --version 0.14.1
90+
run: cargo install cargo-raze --version 0.16.1
9191

9292
- name: Format (bazel query)
9393
run: |

Diff for: WORKSPACE

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ load("@proxy_wasm_cpp_host//bazel:repositories.bzl", "proxy_wasm_cpp_host_reposi
44

55
proxy_wasm_cpp_host_repositories()
66

7+
load("@proxy_wasm_cpp_host//bazel:python.bzl", "proxy_wasm_cpp_host_python")
8+
9+
proxy_wasm_cpp_host_python()
10+
711
load("@proxy_wasm_cpp_host//bazel:dependencies.bzl", "proxy_wasm_cpp_host_dependencies")
812

913
proxy_wasm_cpp_host_dependencies()

Diff for: bazel/cargo/wasmtime/BUILD.bazel

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ licenses([
1414
# Aliased targets
1515
alias(
1616
name = "anyhow",
17-
actual = "@wasmtime__anyhow__1_0_71//:anyhow",
17+
actual = "@wasmtime__anyhow__1_0_81//:anyhow",
1818
tags = [
1919
"cargo-raze",
2020
"manual",
@@ -23,7 +23,7 @@ alias(
2323

2424
alias(
2525
name = "env_logger",
26-
actual = "@wasmtime__env_logger__0_10_0//:env_logger",
26+
actual = "@wasmtime__env_logger__0_10_2//:env_logger",
2727
tags = [
2828
"cargo-raze",
2929
"manual",
@@ -32,7 +32,7 @@ alias(
3232

3333
alias(
3434
name = "once_cell",
35-
actual = "@wasmtime__once_cell__1_17_2//:once_cell",
35+
actual = "@wasmtime__once_cell__1_19_0//:once_cell",
3636
tags = [
3737
"cargo-raze",
3838
"manual",
@@ -41,7 +41,7 @@ alias(
4141

4242
alias(
4343
name = "wasmtime",
44-
actual = "@wasmtime__wasmtime__9_0_3//:wasmtime",
44+
actual = "@wasmtime__wasmtime__9_0_4//:wasmtime",
4545
tags = [
4646
"cargo-raze",
4747
"manual",

0 commit comments

Comments
 (0)