Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): Update github-hosted runner label #90

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency:
jobs:
build:
name: cargo build
runs-on: [ubuntu-22.04-github-hosted-32core]
runs-on: [ubuntu-24.04-github-hosted-32core]
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
Expand All @@ -31,7 +31,7 @@ jobs:

test:
name: cargo test
runs-on: [ubuntu-22.04-github-hosted-32core]
runs-on: [ubuntu-24.04-github-hosted-32core]
needs: build
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion crates/zkevm_circuits/.github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
build:
name: cargo build and test
runs-on: [ubuntu-22.04-github-hosted-32core]
runs-on: [ubuntu-24.04-github-hosted-32core]
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
Expand Down
8 changes: 4 additions & 4 deletions crates/zkevm_test_harness/.github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
build:
name: cargo build
runs-on: [ubuntu-22.04-github-hosted-32core]
runs-on: [ubuntu-24.04-github-hosted-32core]
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
Expand All @@ -27,12 +27,12 @@ jobs:
run: cargo build --manifest-path circuit_definitions/Cargo.toml --verbose
- name: Compile kzg
run: cargo build --manifest-path kzg/Cargo.toml --verbose



test:
name: cargo test
runs-on: [ubuntu-22.04-github-hosted-32core]
runs-on: [ubuntu-24.04-github-hosted-32core]
needs: build
steps:
- uses: actions/checkout@v3
Expand All @@ -45,7 +45,7 @@ jobs:
rustup toolchain install nightly-2023-08-23
rustup default nightly-2023-08-23
cargo install cargo-nextest
- name: Main test
- name: Main test
run: cargo nextest run --release --test-threads 2
- name: Encodings test
run: cargo nextest run --release --manifest-path circuit_encodings/Cargo.toml
Expand Down
Loading