Skip to content

Commit 1a9ba88

Browse files
committed
Run CI/CD on self-hosted runners
1 parent 828cc2a commit 1a9ba88

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/arbitrator-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ env:
2828
jobs:
2929
arbitrator:
3030
name: Run Arbitrator tests
31-
runs-on: ubuntu-latest
31+
runs-on: self-hosted
3232
steps:
3333
- name: Setup tmate session
3434
uses: mxschmitt/action-tmate@v3

.github/workflows/arbitrator-skip-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
arbitrator:
1717
name: Run Arbitrator tests
18-
runs-on: ubuntu-latest
18+
runs-on: self-hosted
1919
steps:
2020
- name: Do nothing
2121
run: echo "doing nothing"

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
jobs:
1010
backport:
1111
name: Backport pull request
12-
runs-on: ubuntu-latest
12+
runs-on: self-hosted
1313
# Don't run on closed unmerged pull requests
1414
if: github.event.pull_request.merged
1515
steps:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
analyze:
2727
name: Analyze
2828
if: github.repository == 'OffchainLabs/nitro' # don't run in any forks without "Advanced Security" enabled
29-
runs-on: ubuntu-latest
29+
runs-on: self-hosted
3030
permissions:
3131
actions: read
3232
contents: read

.github/workflows/docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
# Only runs Docker build jobs if a PR has received a final "design approved" label as a final check
99
check-label:
1010
name: Check for required label
11-
runs-on: ubuntu-latest
11+
runs-on: self-hosted
1212
if: github.event_name == 'pull_request'
1313
outputs:
1414
should-run: ${{ steps.check-label.outputs.has-label }}
@@ -26,7 +26,7 @@ jobs:
2626
core.setOutput('has-label', hasLabel);
2727
console.log(`PR has 'design-approved' label: ${hasLabel}`);
2828
free-disk-space:
29-
runs-on: ubuntu-latest
29+
runs-on: self-hosted
3030
steps:
3131
- name: Free Disk Space (Ubuntu)
3232
uses: jlumbroso/free-disk-space@main
@@ -37,7 +37,7 @@ jobs:
3737
name: Docker build
3838
# Run if it's not a PR or if it's a PR with the required label
3939
if: github.event_name != 'pull_request' || needs.check-label.outputs.should-run == 'true'
40-
runs-on: ubuntu-latest
40+
runs-on: self-hosted
4141
services:
4242
# local registry
4343
registry:

.github/workflows/espresso-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
platform: [linux/amd64]
2020

21-
runs-on: ubuntu-latest
21+
runs-on: self-hosted
2222

2323
steps:
2424
- name: Free Disk Space (Ubuntu)

.github/workflows/espresso-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616
jobs:
1717
test:
1818
name: Espresso E2E
19-
runs-on: ubuntu-latest
19+
runs-on: self-hosted
2020

2121
steps:
2222
- name: Checkout

.github/workflows/merge-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
check-design-approved:
1313
name: Check if Design Approved
14-
runs-on: ubuntu-latest
14+
runs-on: self-hosted
1515
steps:
1616
- name: Check if design approved and update status
1717
run: |

.github/workflows/nightly-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ jobs:
377377
notify-on-failure:
378378
name: Notify Slack on failure
379379
needs: [tests-scheduled]
380-
runs-on: ubuntu-latest
380+
runs-on: self-hosted
381381
if: ${{ failure() }}
382382
steps:
383383
- name: Send Slack notification

.github/workflows/submodule-pin-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
submodule-pin-check:
1818
name: Check Submodule Pin
19-
runs-on: ubuntu-latest
19+
runs-on: self-hosted
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4

0 commit comments

Comments
 (0)