Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ concurrency:
jobs:
build:
name: build
runs-on: ubicloud-standard-30
runs-on: tenki-standard-xlarge-32c-128g
timeout-minutes: 60
steps:
- uses: actions/checkout@v5
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:

check:
name: check
runs-on: ubicloud-standard-4
runs-on: tenki-standard-medium-4c-8g
timeout-minutes: 60
steps:
- uses: actions/checkout@v5
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:

udeps:
name: udeps
runs-on: ubicloud-standard-8
runs-on: tenki-standard-large-8c-16g
timeout-minutes: 60
if: github.event.pull_request.draft == false
steps:
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
args: "--workspace --all-features --all-targets"

deny:
runs-on: ubuntu-latest
runs-on: tenki-standard-small-2c-4g
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v5
Expand All @@ -192,7 +192,7 @@ jobs:
coverage:
needs:
- docker-setup
runs-on: ubicloud-standard-30
runs-on: tenki-standard-xlarge-32c-128g
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@1.85.0
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

uniswap:
runs-on: ubicloud-standard-2
runs-on: tenki-standard-small-2c-4g
needs: build
if: github.event.pull_request.draft == false
steps:
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
fi

web3_py:
runs-on: ubicloud-standard-2
runs-on: tenki-standard-small-2c-4g
needs: build
if: github.event.pull_request.draft == false
steps:
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
python test.py

ethers_js:
runs-on: ubicloud-standard-2
runs-on: tenki-standard-small-2c-4g
needs: build
if: github.event.pull_request.draft == false
steps:
Expand Down Expand Up @@ -349,7 +349,7 @@ jobs:
needs:
- docker-setup
name: nextest
runs-on: ubicloud-standard-30
runs-on: tenki-standard-xlarge-32c-128g
timeout-minutes: 60
steps:
- uses: actions/checkout@v5
Expand Down Expand Up @@ -405,7 +405,7 @@ jobs:
strategy:
fail-fast: true
name: Foundry project
runs-on: ubicloud-standard-2
runs-on: tenki-standard-small-2c-4g
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v5
Expand Down Expand Up @@ -433,7 +433,7 @@ jobs:
strategy:
fail-fast: true
name: Check Genesis Files
runs-on: ubicloud-standard-2
runs-on: tenki-standard-small-2c-4g
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v5
Expand All @@ -455,7 +455,7 @@ jobs:
shell: bash

docker-setup:
runs-on: ubicloud-standard-2
runs-on: tenki-standard-small-2c-4g
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down Expand Up @@ -491,7 +491,7 @@ jobs:

codespell:
name: codespell
runs-on: ubicloud-standard-2
runs-on: tenki-standard-small-2c-4g
steps:
- uses: actions/checkout@v5

Expand All @@ -510,7 +510,7 @@ jobs:

proving-stats:
name: Proving stats
runs-on: ubicloud-standard-2
runs-on: tenki-standard-small-2c-4g
needs: [build, docker-setup]
if: github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'guest-code')
steps:
Expand Down
Loading