-
Notifications
You must be signed in to change notification settings - Fork 65
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
Support arm64 machine #663
Comments
@isac322 Can you show me how this is run? AFAICT, Action runners do not run on ARM (see actions/runner-images#5631). |
@paambaati We use https://github.com/actions/actions-runner-controller. I can not share how workflow runs because it is a private repository. |
@isac322 Looking at the linked repo, I’m assuming your runners are self-hosted. Can you show me how Node.js is installed on them? I ask because detecting the host platform architecture is not straightforward, as Node |
- name: debug
run: |
/runnertmp/externalstmp/node12/bin/node --version
/runnertmp/externalstmp/node12/bin/node -e 'console.log(require("os").arch())'
/runnertmp/externalstmp/node16/bin/node --version
/runnertmp/externalstmp/node16/bin/node -e 'console.log(require("os").arch())' You can reproduce using |
This should now be available in v4.0.0 of the workflow. |
Describe the bug
The actions do not work on arm64 machine.
Version of
codeclimate-action
you're usingv3.2.0
The text was updated successfully, but these errors were encountered: