We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40ada37 commit 086a2daCopy full SHA for 086a2da
.changeset/spotty-horses-peel.md
@@ -0,0 +1,5 @@
1
+---
2
+"@graphprotocol/graph-cli": minor
3
4
+
5
+Add support for M3 apple silicon for `graph test`
packages/cli/src/commands/test.ts
@@ -180,7 +180,7 @@ async function getPlatform(
180
const type = os.type();
181
const arch = os.arch();
182
const cpuCore = os.cpus()[0];
183
- const isAppleSilicon = arch === 'arm64' && /Apple (M1|M2|processor)/.test(cpuCore.model);
+ const isAppleSilicon = arch === 'arm64' && /Apple (M1|M2|M3|processor)/.test(cpuCore.model);
184
const linuxInfo = type === 'Linux' ? await getLinuxInfo.bind(this)() : {};
185
const linuxDistro = linuxInfo.name;
186
const release = linuxInfo.version || os.release();
0 commit comments