DEV: switch amd64 builds to debian-12 runners

We can use our self-hosted action/runner machines to build the amd64
Docker images, falling back to the Github action/runner machines for the
arm64 builds.

Additionally, simplify the expression for how arm runners are selected.
The cost savings from switching to self-hosted runners dwarfs the
increase in 8core vs 2core arm runners.
This commit is contained in:
Michael Fitz-Payne 2025-01-21 14:31:32 +10:00
parent e44bc08778
commit e72554ed7f
No known key found for this signature in database
GPG key ID: 643A32A8B840EA02

View file

@ -27,11 +27,9 @@ jobs:
echo "timestamp=$timestamp" >> $GITHUB_OUTPUT
base:
# `ubuntu-22.04-8core` for arch amd64 non-scheduled builds
# `ubuntu-22.04` for arch amd64 scheduled builds
# `ubuntu-22.04-8core-arm` for arch arm64 non-scheduled builds
# `ubuntu-22.04-2core-arm` for arch arm64 scheduled builds
runs-on: ubuntu-22.04${{ ((github.event_name != 'schedule') && '-8core') || (( matrix.arch == 'arm64' && '-2core' ) || '') }}${{ (matrix.arch == 'arm64') && '-arm' || '' }}
# `debian-12` for amd64 builds
# `ubuntu-22.04-8core-arm` for arm64 builds
runs-on: ${{ (matrix.arch == 'amd64' && 'debian-12') || 'ubuntu-22.04-8core-arm' }}
strategy:
matrix:
arch: [amd64, arm64]
@ -210,7 +208,7 @@ jobs:
docker manifest push discourse/discourse_dev:${{ env.TIMESTAMP }}
docker manifest push discourse/discourse_dev:release
test:
runs-on: ubuntu-22.04${{ ((github.event_name != 'schedule') && '-8core') || '' }}
runs-on: debian-12
timeout-minutes: 30
needs: base
defaults: