From e5d9c003f5c8a0945705ec9facf45919ec4cf243 Mon Sep 17 00:00:00 2001 From: Andrey Taranik Date: Mon, 19 Aug 2024 17:10:17 +0300 Subject: [PATCH] try new qemu based runners --- .github/actionlint.yml | 1 + .github/workflows/_build-and-test-locally.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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: