vnmakarov / mir

A lightweight JIT compiler based on MIR (Medium Internal Representation) and C11 JIT compiler and interpreter based on MIR
MIT License
2.29k stars 145 forks source link

Add Apple Silicon CI support #391

Closed addr2line closed 8 months ago

addr2line commented 8 months ago

ref: https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/

GitHub now supports Apple ARM chips for free CI instances for open source projects. Should we consider adding CI for it?

vnmakarov commented 8 months ago

Thank you for pointing this out. I've added github action for apple silicon.

It helped me to find and fix building MIR for recent arm64 Mac OS (I used the older version of M1 MAC OS) and fix a test which should not work on M1.

The only problem for me to actively use github actions is that my month quota is not enough even when I do just small number of pushes per month.

addr2line commented 8 months ago

Wow, thanks for your quick response!