mirror of
https://github.com/juanfont/headscale.git
synced 2026-04-01 15:03:23 +02:00
ci: switch integration tests to ARM runners
Switch all integration test jobs (build, build-postgres, test template) from ubuntu-latest (x86_64) to ubuntu-24.04-arm (aarch64). ARM runners on GitHub Actions are free for public repos and tend to have more consistent performance characteristics than the shared x86_64 pool. This should reduce flakiness caused by resource contention on congested runners. Updates #3125
This commit is contained in:
4
.github/workflows/test-integration.yaml
vendored
4
.github/workflows/test-integration.yaml
vendored
@@ -12,7 +12,7 @@ jobs:
|
||||
# sqlite: Runs all integration tests with SQLite backend.
|
||||
# postgres: Runs a subset of tests with PostgreSQL to verify database compatibility.
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-24.04-arm
|
||||
outputs:
|
||||
files-changed: ${{ steps.changed-files.outputs.files }}
|
||||
steps:
|
||||
@@ -119,7 +119,7 @@ jobs:
|
||||
path: tailscale-head-image.tar.gz
|
||||
retention-days: 10
|
||||
build-postgres:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-24.04-arm
|
||||
needs: build
|
||||
if: needs.build.outputs.files-changed == 'true'
|
||||
steps:
|
||||
|
||||
Reference in New Issue
Block a user