Skip to content

Commit ca2c0cb

Browse files
committed
e2e tests should run on specific runners
1 parent 95d2dc1 commit ca2c0cb

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
fail-fast: false
4343
matrix:
4444
include: ${{ fromJSON(needs.prepare.outputs.deploy_matrix) }}
45-
runs-on: [self-hosted, Linux, X64, "${{ matrix.runner }}"]
45+
runs-on: [self-hosted, bb-dev-selfhosted, "${{ matrix.runner }}"]
4646
steps:
4747
- name: Checkout code
4848
uses: actions/checkout@v4
@@ -61,7 +61,7 @@ jobs:
6161
name: E2E Tests (post-deploy)
6262
needs: [prepare, deploy]
6363
if: ${{ needs.deploy.result == 'success' }}
64-
runs-on: [self-hosted, Linux, X64]
64+
runs-on: [self-hosted, bb-dev-selfhosted]
6565
env:
6666
E2E_REGEX: ${{ needs.prepare.outputs.e2e_regex }}
6767
steps:

.github/workflows/testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
unit-tests:
1111
name: Unit Tests
12-
runs-on: [self-hosted, Linux, X64]
12+
runs-on: [self-hosted, bb-dev-selfhosted]
1313

1414
steps:
1515
- name: Checkout code
@@ -20,7 +20,7 @@ jobs:
2020

2121
connectivity-tests:
2222
name: Connectivity Tests
23-
runs-on: [self-hosted, Linux, X64]
23+
runs-on: [self-hosted, bb-dev-selfhosted]
2424
needs: unit-tests
2525
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
2626

@@ -38,7 +38,7 @@ jobs:
3838

3939
integration-tests:
4040
name: Integration Tests (RPC + Sync)
41-
runs-on: [self-hosted, Linux, X64]
41+
runs-on: [self-hosted, bb-dev-selfhosted]
4242
needs: connectivity-tests
4343
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
4444

0 commit comments

Comments
 (0)