runner lables fix

This commit is contained in:
Andrey Taranik
2024-08-17 16:37:17 +03:00
parent f40f627730
commit 3a22daf33e
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ self-hosted-runner:
- us-east-2
- neon-arm64-16core
- neon-arm64-80core
- neon-arm64-32core-aws
- neon-arm64-32core
config-variables:
- BENCHMARK_PROJECT_ID_PUB
- BENCHMARK_PROJECT_ID_SUB

View File

@@ -36,7 +36,7 @@ env:
jobs:
build-neon:
runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', inputs.arch == 'arm64' && 'neon-arm64-32core-aws' || 'large')) }}
runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', inputs.arch == 'arm64' && 'neon-arm64-32core' || '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' && 'neon-arm64-32core-aws' || 'large')) }}
runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', inputs.arch == 'arm64' && 'neon-arm64-32core' || 'large')) }}
container:
image: ${{ inputs.build-tools-image }}
credentials: