You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 13, 2023. It is now read-only.
The conductor/grpc/build.gradle is now handling different ISAs, there is no need to manually update for Mac users
The below NOTE should be removed-
NOTE for Mac users: If you are using a new Mac with an Apple Silicon Chip, you must make a small change to conductor/grpc/build.gradle - adding "osx-x86_64" to two lines:
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:${revProtoBuf}:osx-x86_64"
}
plugins {
grpc {
artifact = "io.grpc:protoc-gen-grpc-java:${revGrpc}:osx-x86_64"
}
}
...
}