From 2a633da236b2672e43a76d55309aa50762b88742 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= Date: Mon, 22 Apr 2024 16:56:49 +0200 Subject: [PATCH] Enable the Cirrus builders for the CI https://cirruslabs.org/ kindly provided us with four beefy CI runners, so use them for our CI. In addition to making the builds way faster, these also allow us to test on aach64-linux, which is quite welcome. Co-Authored-By: Fedor Korotkov --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b8eac49d..51f5a1c84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] + os: ["ghcr.io/cirruslabs/ubuntu-runner-arm64:22.04-md", "ghcr.io/cirruslabs/ubuntu-runner-amd64:22.04-md", "ghcr.io/cirruslabs/macos-runner:sonoma"] runs-on: ${{ matrix.os }} timeout-minutes: 60 steps: @@ -54,7 +54,7 @@ jobs: installer: needs: [tests, check_secrets] if: github.event_name == 'push' && needs.check_secrets.outputs.cachix == 'true' - runs-on: ubuntu-latest + runs-on: ghcr.io/cirruslabs/ubuntu-runner-amd64:22.04-md outputs: installerURL: ${{ steps.prepare-installer.outputs.installerURL }} steps: @@ -79,7 +79,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] + os: ["ghcr.io/cirruslabs/ubuntu-runner-arm64:22.04-md", "ghcr.io/cirruslabs/ubuntu-runner-amd64:22.04-md", "ghcr.io/cirruslabs/macos-runner:sonoma"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 @@ -161,7 +161,7 @@ jobs: docker push $IMAGE_ID:master vm_tests: - runs-on: ubuntu-22.04 + runs-on: ghcr.io/cirruslabs/ubuntu-runner-amd64:22.04 steps: - uses: actions/checkout@v4 - uses: DeterminateSystems/nix-installer-action@main