Skip to content

Commit

Permalink
ci: if package is labelled as large, use lg runners for x86 (#1387) (#…
Browse files Browse the repository at this point in the history
…1388)

(cherry picked from commit 1f2208b)

Co-authored-by: lea <[email protected]>
  • Loading branch information
raboneko and lleyton authored Jun 25, 2024
1 parent e7f58b4 commit a0a446e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a0a446e

Please sign in to comment.