mirror of https://github.com/grpc/grpc-java.git
examples: Add bzlmod support
This also updates the version number of the grpc-java module as part of the release process.
This commit is contained in:
parent
85e0a01ecd
commit
36e687f9d9
|
|
@ -97,7 +97,17 @@ jobs:
|
||||||
- name: Run bazel build
|
- name: Run bazel build
|
||||||
run: bazelisk build //... --enable_bzlmod=false
|
run: bazelisk build //... --enable_bzlmod=false
|
||||||
|
|
||||||
|
- name: Run example bazel build
|
||||||
|
run: bazelisk build //... --enable_bzlmod=false
|
||||||
|
working-directory: ./examples
|
||||||
|
|
||||||
- name: Run bazel build (bzlmod)
|
- name: Run bazel build (bzlmod)
|
||||||
env:
|
env:
|
||||||
USE_BAZEL_VERSION: 7.0.0
|
USE_BAZEL_VERSION: 7.0.0
|
||||||
run: bazelisk build //... --enable_bzlmod=true
|
run: bazelisk build //... --enable_bzlmod=true
|
||||||
|
|
||||||
|
- name: Run example bazel build (bzlmod)
|
||||||
|
env:
|
||||||
|
USE_BAZEL_VERSION: 7.0.0
|
||||||
|
run: bazelisk build //... --enable_bzlmod=true
|
||||||
|
working-directory: ./examples
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ module(
|
||||||
name = "grpc-java",
|
name = "grpc-java",
|
||||||
compatibility_level = 0,
|
compatibility_level = 0,
|
||||||
repo_name = "io_grpc_grpc_java",
|
repo_name = "io_grpc_grpc_java",
|
||||||
version = "0",
|
version = "1.66.0-SNAPSHOT", # CURRENT_GRPC_VERSION
|
||||||
)
|
)
|
||||||
|
|
||||||
# GRPC_DEPS_START
|
# GRPC_DEPS_START
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,10 @@ them before continuing, and set them again when resuming.
|
||||||
```bash
|
```bash
|
||||||
MAJOR=1 MINOR=7 PATCH=0 # Set appropriately for new release
|
MAJOR=1 MINOR=7 PATCH=0 # Set appropriately for new release
|
||||||
VERSION_FILES=(
|
VERSION_FILES=(
|
||||||
|
MODULE.bazel
|
||||||
build.gradle
|
build.gradle
|
||||||
core/src/main/java/io/grpc/internal/GrpcUtil.java
|
core/src/main/java/io/grpc/internal/GrpcUtil.java
|
||||||
|
examples/MODULE.bazel
|
||||||
examples/build.gradle
|
examples/build.gradle
|
||||||
examples/pom.xml
|
examples/pom.xml
|
||||||
examples/android/clientcache/app/build.gradle
|
examples/android/clientcache/app/build.gradle
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,24 @@
|
||||||
|
bazel_dep(name = "grpc-java", repo_name = "io_grpc_grpc_java", version = "1.66.0-SNAPSHOT") # CURRENT_GRPC_VERSION
|
||||||
|
bazel_dep(name = "grpc-proto", repo_name = "io_grpc_grpc_proto", version = "0.0.0-20240627-ec30f58")
|
||||||
|
bazel_dep(name = "protobuf", repo_name = "com_google_protobuf", version = "23.1")
|
||||||
|
bazel_dep(name = "rules_jvm_external", version = "6.0")
|
||||||
|
bazel_dep(name = "rules_proto", version = "5.3.0-21.7")
|
||||||
|
|
||||||
|
# Do not use this override in your own MODULE.bazel. Use a version from BCR
|
||||||
|
local_path_override(
|
||||||
|
module_name = "grpc-java",
|
||||||
|
path = "..",
|
||||||
|
)
|
||||||
|
|
||||||
|
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
|
||||||
|
|
||||||
|
use_repo(maven, "maven")
|
||||||
|
|
||||||
|
maven.install(
|
||||||
|
artifacts = [
|
||||||
|
"com.google.api.grpc:grpc-google-cloud-pubsub-v1:0.1.24",
|
||||||
|
"com.google.api.grpc:proto-google-cloud-pubsub-v1:0.1.24",
|
||||||
|
],
|
||||||
|
repositories = ["https://repo.maven.apache.org/maven2/"],
|
||||||
|
strict_visibility = True,
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
# When using bzlmod this makes sure nothing from the legacy WORKSPACE is loaded
|
||||||
Loading…
Reference in New Issue