From 212a0379e860ef14437368303c3b9a94b4bc5215 Mon Sep 17 00:00:00 2001 From: lea Date: Mon, 24 Jun 2024 20:24:08 -0700 Subject: [PATCH] ci: if package is labelled as large, use lg runners for x86 (#1387) (cherry picked from commit 1f2208bdfc97f801180d2472904176bd36827f5d) --- .github/workflows/autobuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index 567772bef3..f04a5e48ae 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -42,7 +42,7 @@ jobs: pkg: ${{ fromJson(needs.manifest.outputs.build_matrix) }} version: ["40"] fail-fast: false - runs-on: ${{ matrix.pkg.arch == 'aarch64' && 'ARM64' || 'ubuntu-latest' }} + runs-on: ${{ matrix.pkg.arch == 'aarch64' && 'ARM64' || matrix.pkg.labels['large'] && 'x86-64-lg' || 'ubuntu-latest' }} container: image: ghcr.io/terrapkg/builder:f${{ matrix.version}} options: --cap-add=SYS_ADMIN --privileged