diff --git a/.github/actionlint.yml b/.github/actionlint.yml index c1e06bf03d..472251ff05 100644 --- a/.github/actionlint.yml +++ b/.github/actionlint.yml @@ -9,6 +9,7 @@ self-hosted-runner: - aws-arm64-8core - aws-arm64-16core - aws-arm64-32core + - qemu-arm64 config-variables: - BENCHMARK_PROJECT_ID_PUB - BENCHMARK_PROJECT_ID_SUB diff --git a/.github/workflows/_build-and-test-locally.yml b/.github/workflows/_build-and-test-locally.yml index 00cce04dee..885260ba67 100644 --- a/.github/workflows/_build-and-test-locally.yml +++ b/.github/workflows/_build-and-test-locally.yml @@ -36,7 +36,7 @@ env: jobs: build-neon: - runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', inputs.arch == 'arm64' && 'aws-arm64-8core' || 'large')) }} + runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', inputs.arch == 'arm64' && 'qemu-arm64' || 'large')) }} container: image: ${{ inputs.build-tools-image }} credentials: @@ -258,7 +258,7 @@ jobs: # Don't run regression tests on debug arm64 builds if: inputs.build-type != 'debug' || inputs.arch != 'arm64' needs: [ build-neon ] - runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', inputs.arch == 'arm64' && 'aws-arm64-8core' || 'large')) }} + runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', inputs.arch == 'arm64' && 'qemu-arm64' || 'large')) }} container: image: ${{ inputs.build-tools-image }} credentials: