Skip to content

Commit

Permalink
feat: ARM support for gcloud bigtable emulator
Browse files Browse the repository at this point in the history
fixes #677
  • Loading branch information
rameshdharan committed Dec 7, 2021
1 parent b4290b1 commit 5d473c7
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,8 +52,10 @@
</goals>
<configuration>
<componentNames>
<componentName>bigtable-darwin-arm</componentName>
<componentName>bigtable-darwin-x86</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 5d473c7

Please sign in to comment.