From 15fdd949e9995786c7a9512cff6f49a0cc5d703f Mon Sep 17 00:00:00 2001 From: Lauri Tulmin Date: Thu, 14 Jul 2022 14:16:38 +0300 Subject: [PATCH] Fix build failure on M1 mac --- .../src/main/kotlin/otel.protobuf-conventions.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/conventions/src/main/kotlin/otel.protobuf-conventions.gradle.kts b/conventions/src/main/kotlin/otel.protobuf-conventions.gradle.kts index 2e40a53a29f9..a485012a988f 100644 --- a/conventions/src/main/kotlin/otel.protobuf-conventions.gradle.kts +++ b/conventions/src/main/kotlin/otel.protobuf-conventions.gradle.kts @@ -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") {