Fix build failure on M1 mac (#6324)
This commit is contained in:
parent
2a59d0faee
commit
07f787693c
|
|
@ -10,6 +10,10 @@ protobuf {
|
|||
protoc {
|
||||
// The artifact spec for the Protobuf Compiler
|
||||
artifact = "com.google.protobuf:protoc:3.3.0"
|
||||
if (osdetector.os == "osx") {
|
||||
// Always use x86_64 version as ARM binary is not available
|
||||
artifact += ":osx-x86_64"
|
||||
}
|
||||
}
|
||||
plugins {
|
||||
id("grpc") {
|
||||
|
|
|
|||
Loading…
Reference in New Issue