From 84c652d7dbd87ff6ca3d90b15e654123ed428787 Mon Sep 17 00:00:00 2001 From: pragmaxim Date: Thu, 5 Mar 2026 08:32:19 +0100 Subject: [PATCH] e2e tests should run on specific runners --- .github/workflows/deploy.yml | 4 ++-- .github/workflows/testing.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 33caa0c2..ca65d6ca 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -42,7 +42,7 @@ jobs: fail-fast: false matrix: include: ${{ fromJSON(needs.prepare.outputs.deploy_matrix) }} - runs-on: [self-hosted, Linux, X64, "${{ matrix.runner }}"] + runs-on: [self-hosted, bb-dev-selfhosted, "${{ matrix.runner }}"] steps: - name: Checkout code uses: actions/checkout@v4 @@ -61,7 +61,7 @@ jobs: name: E2E Tests (post-deploy) needs: [prepare, deploy] if: ${{ needs.deploy.result == 'success' }} - runs-on: [self-hosted, Linux, X64] + runs-on: [self-hosted, bb-dev-selfhosted] env: E2E_REGEX: ${{ needs.prepare.outputs.e2e_regex }} steps: diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index e5f59227..18e94283 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -9,7 +9,7 @@ on: jobs: unit-tests: name: Unit Tests - runs-on: [self-hosted, Linux, X64] + runs-on: [self-hosted, bb-dev-selfhosted] steps: - name: Checkout code @@ -20,7 +20,7 @@ jobs: connectivity-tests: name: Connectivity Tests - runs-on: [self-hosted, Linux, X64] + runs-on: [self-hosted, bb-dev-selfhosted] needs: unit-tests if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} @@ -38,7 +38,7 @@ jobs: integration-tests: name: Integration Tests (RPC + Sync) - runs-on: [self-hosted, Linux, X64] + runs-on: [self-hosted, bb-dev-selfhosted] needs: connectivity-tests if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}