Skip to content

Commit

Permalink
feat: ARM support for gcloud bigtable emulator (#1094)
Browse files Browse the repository at this point in the history
  • Loading branch information
rameshdharan committed Dec 16, 2021
1 parent 7764919 commit d3cb4a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions google-cloud-bigtable-emulator/pom.xml
Expand Up @@ -52,7 +52,9 @@
</goals>
<configuration>
<componentNames>
<componentName>bigtable-darwin-arm</componentName>
<componentName>bigtable-darwin-x86_64</componentName>
<componentName>bigtable-linux-arm</componentName>
<componentName>bigtable-linux-x86</componentName>
<componentName>bigtable-linux-x86_64</componentName>
<componentName>bigtable-windows-x86</componentName>
Expand Down
Expand Up @@ -232,6 +232,9 @@ private static String getBundledResourcePath() {
case "amd64":
arch = "x86_64";
break;
case "aarch64":
arch = "arm";
break;
default:
throw new UnsupportedOperationException("Unsupported architecture: " + unformattedArch);
}
Expand Down

0 comments on commit d3cb4a4

Please sign in to comment.