Skip to content

Commit 6b73d12

Browse files
committed
Use self-hosted runners
1 parent 22a3351 commit 6b73d12

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/run-tests-cloud.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ on:
66
push:
77
branches:
88
- main
9+
pull_request:
10+
branches:
11+
- main
912

1013
jobs:
1114
cloud:
12-
runs-on: ubuntu-latest
15+
if: github.event_name == 'push' || (github.event_name == 'pull_request' && startsWith(github.event.pull_request.head.ref, 'cloud-test/'))
16+
runs-on: [self-hosted, style-checker]
1317
defaults:
1418
run:
1519
shell: bash

.github/workflows/run-tests-head.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
test-ch-head:
12-
runs-on: ubuntu-latest
12+
runs-on: [self-hosted, style-checker]
1313
strategy:
1414
fail-fast: true
1515
matrix:

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
single-node:
15-
runs-on: ubuntu-latest
15+
runs-on: [self-hosted, style-checker]
1616
strategy:
1717
fail-fast: true
1818
matrix:

0 commit comments

Comments
 (0)