Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TS-3565]👷 ci: use self-hosted runners #175

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/_build-and-merge-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:
# Taken from https://docs.docker.com/build/ci/github-actions/multi-platform/#distribute-build-across-multiple-runners
jobs:
build-docker:
# We use a custom runner for ARM64 builds (Buildjet)
runs-on: ${{ matrix.platform == 'linux/amd64' && 'ubuntu-latest' || 'buildjet-2vcpu-ubuntu-2204-arm' }}
# We use a custom runner for ARM64 builds.
runs-on: ${{ matrix.platform == 'linux/amd64' && 'mm-2vcpu-ubuntu-2204' || 'mm-2vcpu-ubuntu-2204-arm' }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
retention-days: 1

merge-docker:
runs-on: ubuntu-latest
runs-on: mm-2vcpu-ubuntu-2204
needs:
- build-docker
steps:
Expand Down