Skip to content

Commit d3cb4a4

Browse files
authored
feat: ARM support for gcloud bigtable emulator (#1094)
1 parent 7764919 commit d3cb4a4

File tree

2 files changed

+5
-0
lines changed
  • google-cloud-bigtable-emulator

2 files changed

+5
-0
lines changed

google-cloud-bigtable-emulator/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@
5252
</goals>
5353
<configuration>
5454
<componentNames>
55+
<componentName>bigtable-darwin-arm</componentName>
5556
<componentName>bigtable-darwin-x86_64</componentName>
57+
<componentName>bigtable-linux-arm</componentName>
5658
<componentName>bigtable-linux-x86</componentName>
5759
<componentName>bigtable-linux-x86_64</componentName>
5860
<componentName>bigtable-windows-x86</componentName>

google-cloud-bigtable-emulator/src/main/java/com/google/cloud/bigtable/emulator/v2/Emulator.java

+3
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,9 @@ private static String getBundledResourcePath() {
232232
case "amd64":
233233
arch = "x86_64";
234234
break;
235+
case "aarch64":
236+
arch = "arm";
237+
break;
235238
default:
236239
throw new UnsupportedOperationException("Unsupported architecture: " + unformattedArch);
237240
}

0 commit comments

Comments
 (0)