Closed tobrien6 closed 11 months ago
Hello,
Yes, once GitHub actions support this architecture for its build.
https://github.com/actions/runner-images/issues/8439#issuecomment-1755601587
As I don't own a Mac (let alone an M one), I cannot do otherwise. :smile:
In the meanwhile, you should be able to build your own package using the Makefile.
I built it with Make, but getting this error now when I try to import clips:
ModuleNotFoundError: No module named 'clips._clips'
Edit: I was able to get it working. Thank you.
Yes, once GitHub actions support this architecture for its build.
Might I make a suggestion? Feel free to use FlyCI's M1 and M2 runners. Our runners are on average 2x faster and 2x cheaper than GitHub's AND we have a free tier for OSS projects (see below).
Easily replace your M1 runners:
jobs:
ci:
- runs-on: macos-latest
+ runs-on: flyci-macos-large-latest-m1
steps:
- name: 👀 Checkout repo
uses: actions/checkout@v4
Or try the M2 runners:
jobs:
ci:
- runs-on: macos-latest
+ runs-on: flyci-macos-large-latest-m2
steps:
- name: 👀 Checkout repo
uses: actions/checkout@v4
Processor | vCPU | RAM (GB) | Storage | Label | Price on FlyCI | Price on GitHub |
---|---|---|---|---|---|---|
M1 | 4 | 7 | 28 GB | flyci-macos-large-latest-m1 | $0.06 | - |
M1 | 8 | 14 | 28 GB | flyci-macos-xlarge-latest-m1 | $0.12 | $0.16 |
M2 | 4 | 7 | 28 GB | flyci-macos-large-latest-m2 | $0.08 | - |
M2 | 8 | 14 | 28 GB | flyci-macos-xlarge-latest-m2 | $0.16 | - |
If your repo is public, then FlyCI offers 500 mins/month of free M1 runner usage with the flyci-macos-large-latest-m1
runner.
Best Regards, Kiril Gantchev CEO and co-founder of FlyCI
Version 1.0.3
now supports Apple Silicon.
Are there any plans to get this working for M architectures? The CLIPS engine downloaded from the official website seems to work fine on my M2.