Skip to content

Commit

Permalink
fix(ci): Update github-hosted runner label
Browse files Browse the repository at this point in the history
  • Loading branch information
artmakh committed Jan 20, 2025
1 parent d0b3ad2 commit c6d4a68
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
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

0 comments on commit c6d4a68

Please sign in to comment.