From b017b2505c1cecc0e6523011ae4121d4991b83d2 Mon Sep 17 00:00:00 2001 From: RedPanda Date: Fri, 30 Jan 2026 14:26:14 +0530 Subject: [PATCH 1/2] add: CI now uses 12xlarge+amd --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 382612a..271ed32 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: run: cargo clippy --all-targets --all-features -- -D warnings integration-test: - runs-on: ["self-hosted", "linux", "x64", "16xlarge+gpu"] + runs-on: ["self-hosted", "linux", "x64", "12xlarge+amd"] timeout-minutes: 60 steps: From 6a8e0e10632c6846e78b119872d618ee1bc3e12b Mon Sep 17 00:00:00 2001 From: RedPanda Date: Fri, 30 Jan 2026 14:38:33 +0530 Subject: [PATCH 2/2] matrix test --- .github/workflows/ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 271ed32..c11a32b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,18 @@ jobs: run: cargo clippy --all-targets --all-features -- -D warnings integration-test: - runs-on: ["self-hosted", "linux", "x64", "12xlarge+amd"] + strategy: + matrix: + include: + - runner: ["self-hosted", "linux", "x64", "12xlarge+amd"] + name: "12xlarge-amd" + - runner: ["self-hosted", "linux", "x64", "9xlarge"] + name: "9xlarge" + - runner: ["self-hosted", "linux", "x64", "8xlarge+amd"] + name: "8xlarge-amd" + fail-fast: false + name: integration-test (${{ matrix.name }}) + runs-on: ${{ matrix.runner }} timeout-minutes: 60 steps: