server/priv/docs/en/guides/features/runners/profiles.md
A profile is an account-scoped, named machine shape. You reference it from a workflow's runs-on, and Tuist routes the job to a runner that matches. Profiles keep infrastructure choices (platform, size, Xcode version) in one place instead of scattered across every workflow file, and give you a stable label to point CI at.
jobs:
build:
runs-on: tuist-macos
The label is the profile's name with the tuist- prefix. A profile named macos is runs-on: tuist-macos; a profile named linux-large is runs-on: tuist-linux-large. Matching is case-insensitive.
Every account enabled for Runners starts with two profiles so you can use the fleet without configuring anything:
{{runner_default_profiles_table}}
Both point at the default <.localized_link href="/guides/features/runners/profiles#machine-shapes">shape</.localized_link> for their platform. They're protected, so they can't be deleted and the labels your workflows depend on always resolve. You can still change their shape or Xcode version, and you can create additional profiles for other sizes or Xcode versions.
Runners are available on macOS (Apple silicon, virtualized on the Mac fleet) and Linux. Each profile pins one machine shape, a (vCPUs, memory) pair, from the catalog below.
{{runner_linux_shapes_table}}
{{runner_macos_shapes_table}}
macOS profiles also pin an Xcode version. The version selects a runner image with that Xcode preinstalled, so jobs start with the toolchain already in place. Supported versions today:
{{runner_macos_xcode_versions}}
[!NOTE] The catalog evolves as we add hardware and Xcode releases. The New profile form in the dashboard always shows the shapes and Xcode versions currently available to your account, so treat it as the source of truth.
runs-on: tuist-<name>.For example, a profile named linux-large on the 8 vCPU / 32 GB shape:
jobs:
integration-tests:
runs-on: tuist-linux-large
Or a macOS profile named xcode-26-4 pinned to Xcode 26.4.1, so a job can run on an older toolchain while your default macos profile tracks the latest:
jobs:
build-legacy:
runs-on: tuist-xcode-26-4