Overview
CircleCI supports Apple Silicon natively. The macOS executor offers M4 Pro resource classes that allow you to build and test apps for Apple Silicon. Intel macOS resources were deprecated in 2024, and M1/M2 resource classes reached end of life on February 16, 2026. The current resource classes are m4pro.medium and m4pro.large, available on Free, Performance, and Scale plans.
Current Apple Silicon resource classes
jobs:
build:
macos:
xcode: "26.3.0"
resource_class: m4pro.medium
steps:
- checkout
- run: xcodebuild ...
For supported Xcode versions, refer to the macOS execution environment docs.
Building Intel apps on Apple Silicon
If you need to build or test Intel-targeted binaries on Apple Silicon, install Rosetta using the CircleCI macOS orb. See Installing Rosetta on Apple Silicon executors for details.
Comments
Article is closed for comments.