Skip to content

Commit

Permalink
ci(repo): run jobs on a bigger taiko-runner (#16033)
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik authored Feb 24, 2024
1 parent d54172c commit 4e622d7
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bridge-ui-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
Deploy-Preview:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bridge-ui-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
Deploy-Production:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bridge-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/eventindexer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- uses: actions/setup-go@v5
with:
Expand All @@ -29,7 +29,7 @@ jobs:
args: --config=.golangci.yml --timeout=4m

test:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
needs: lint
steps:
- name: Cancel Previous Runs
Expand All @@ -56,7 +56,7 @@ jobs:
# only push docker image on PR merge to main
if: ${{ github.event }} == 'push'
name: Build and push docker image
runs-on: ubuntu-latest
runs-on: [taiko-runner]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fork-diff-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
Deploy-Preview:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fork-diff-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
Deploy-Production:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
Deploy-Preview:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
Deploy-Production:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/guardianproverhealthcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- uses: actions/setup-go@v5
with:
Expand All @@ -29,7 +29,7 @@ jobs:
args: --config=.golangci.yml --timeout=4m

test:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
needs: lint
steps:
- name: Cancel Previous Runs
Expand All @@ -56,7 +56,7 @@ jobs:
# only push docker image on PR merge to main
if: ${{ github.event }} == 'push'
name: Build and push docker image
runs-on: ubuntu-latest
runs-on: [taiko-runner]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/protocol.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/relayer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- uses: actions/setup-go@v5
with:
Expand All @@ -29,7 +29,7 @@ jobs:
args: --config=.golangci.yml --timeout=4m

test:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
needs: lint
steps:
- name: Cancel Previous Runs
Expand All @@ -56,7 +56,7 @@ jobs:
# only push docker image on PR merge to main
if: ${{ github.event }} == 'push'
name: Build and push docker image
runs-on: ubuntu-latest
runs-on: [taiko-runner]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
release-please:
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- uses: google-github-actions/release-please-action@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
validate-pr-title:
if: github.event_name == 'pull_request_target'
runs-on: ubuntu-latest
runs-on: [taiko-runner]
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
Expand Down

0 comments on commit 4e622d7

Please sign in to comment.