-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Builds for Apple Silicon? #470
Comments
With now have the possibility to run build jobs on ARM based machine at AWS EC2 it would be even nicer to have that ARM binary. |
Indeed. We run GitHub Actions self-hosted runners on arm64 and x64 EC2s to build multi-arch Docker images, and would like to be able to upload coverage reports from both. |
ARM EC2 should work with the ARM64 variant now https://docs.codeclimate.com/docs/configuring-test-coverage#section-locations-of-pre-built-binaries |
I see a Linux ARM64 binary. But I don't see a Darwin ARM64 binary. CircleCI recently announced M1 support (Apple Silicon) https://circleci.com/blog/m1-mac-resource-class/. What's awesome about this is that it basically cuts build times in half. But I can't use CodeClimate, because I get this error:
|
@skydivedan have you found a solution? |
Well... I found a workaround. |
Hi, I've arrived to here with the same issue, but I found a workaround to use the (intel) binary from the Mac, maybe it helps to someone more: # download the amd64 version for Mac and set the execution permissions
curl -L codeclimate.com/downloads/test-reporter/test-reporter-latest-darwin-amd64 > ~/cc-test-reporter
chmod +x ~/cc-test-reporter
# change the architecture of the shell (Rosetta is needed to do this step)
arch -x86_64 zsh
# Now, you can confirm that the arch on this shell has changed with:
arch
# and you'll be able to execute the binary you've just downloaded:
~/cc-test-reporter |
Wow, this was brought up nearly 2 ½ years ago... Is anyone looking at this? |
Hi there!
When doing an audit of the binaries on my computer to see which aren't compiled for Apple Silicon, codeclimate test reporter popped up as only having an
x86_64
executableAre there any plans for either an
arm64e
-specific build, or a universal binary containing an executable for both?The text was updated successfully, but these errors were encountered: