ci: migrate to self-hosted runners with sccache - #32
Open
Frando wants to merge 1 commit into
Open
Conversation
Closed
Frando
force-pushed
the
chore/ci-selfhosted
branch
from
March 30, 2026 14:04
92fdee0 to
df6f4eb
Compare
GitHub-hosted runners have long queue times and limited caching. Self-hosted runners with sccache give us faster builds and persistent compilation caches across runs. Changes to both ci.yml and release.yml: - Replace all `ubuntu-latest` / `macos-latest` / `macos-14` with self-hosted runner labels (`[self-hosted, linux, X64]` / `[self-hosted, macOS, ARM64]`) - Replace `Swatinem/rust-cache` with `mozilla-actions/sccache-action@v0.0.9` and set `RUSTC_WRAPPER: "sccache"` globally - Expand Linux system deps to cover the full build surface (libx264, libopus, X11/xkbcommon headers, clang/llvm, ffmpeg, etc.) - Remove `brew install` on macOS (deps pre-installed on self-hosted runners) - Drop linux-aarch64 release target (no self-hosted ARM Linux runner available) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Frando
force-pushed
the
chore/ci-selfhosted
branch
from
April 1, 2026 11:41
f638571 to
d2f970f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GitHub-hosted runners have long queue times and limited caching. Self-hosted runners with sccache give us faster builds and persistent compilation caches across runs.
Changes to both ci.yml and release.yml:
ubuntu-latest/macos-latest/macos-14with self-hosted runner labels ([self-hosted, linux, X64]/[self-hosted, macOS, ARM64])Swatinem/rust-cachewithmozilla-actions/sccache-action@v0.0.9and setRUSTC_WRAPPER: "sccache"globallybrew installon macOS (deps pre-installed on self-hosted runners)