feat(zkevm-circuits): update version #176
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI checks | |
on: | |
pull_request: | |
types: [synchronize, opened, reopened, ready_for_review] | |
# Ignore when target branch is `main` and source branch is develop. | |
# It could avoid running twice. Since develop is set as `push` below. | |
branches-ignore: | |
- main | |
push: | |
branches: | |
- develop | |
env: | |
CARGO_NET_GIT_FETCH_WITH_CLI: true | |
RUST_MIN_STACK: 16777216 | |
## `actions-rs/toolchain@v1` overwrite set to false so that | |
## `rust-toolchain` is always used and the only source of truth. | |
jobs: | |
skip_check: | |
runs-on: ubuntu-latest | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@v5 | |
with: | |
cancel_others: 'true' | |
concurrent_skipping: 'same_content_newer' | |
paths_ignore: '["**/README.md"]' | |
runner: | |
needs: [skip_check] | |
if: | | |
github.event.pull_request.draft == false && | |
(github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true') | |
uses: ./.github/workflows/select-runner.yml | |
test: | |
name: Test | |
needs: [runner] | |
runs-on: ${{ matrix.os }} | |
concurrency: ${{ needs.runner.outputs.concurrency-group }} | |
strategy: | |
matrix: | |
# We don't need to test across multiple platforms yet | |
# os: [ubuntu-latest, windows-latest, macOS-latest] | |
os: ${{ fromJSON(needs.runner.outputs.runner-matrix) }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set HOME env | |
run: | | |
echo "HOME=/home/CI" >> $GITHUB_ENV | |
- uses: actions-rs/toolchain@v1 | |
with: | |
override: false | |
- name: Setup golang | |
uses: actions/setup-go@v3 | |
with: | |
cache: false | |
go-version: ~1.18 | |
# Go cache for building geth-utils | |
- name: Go cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
# https://github.com/actions/cache/issues/810 | |
env: | |
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 5 | |
- name: Cargo cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Run light tests # light tests are run in parallel | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --verbose --release --all --exclude integration-tests --exclude circuit-benchmarks | |
- name: Run heavy tests # heavy tests are run serially to avoid OOM | |
if: false | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --verbose --release --all --all-features --exclude integration-tests --exclude circuit-benchmarks serial_ -- --ignored --test-threads 1 | |
build: | |
needs: [skip_check] | |
if: | | |
false && | |
github.event.pull_request.draft == false && | |
(github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true') | |
name: Build target ${{ matrix.target }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: | |
- wasm32-unknown-unknown | |
- wasm32-wasi | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
override: false | |
- name: Add target | |
run: rustup target add ${{ matrix.target }} | |
# Go cache for building geth-utils | |
- name: Go cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
# https://github.com/actions/cache/issues/810 | |
env: | |
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 5 | |
- name: Cargo cache | |
uses: Swatinem/rust-cache@v2 | |
- name: cargo build | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --all-features | |
# Make sure benchmarks compile. | |
- name: cargo build benchmarks no-run | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --verbose --release --all-features -p circuit-benchmarks --no-run | |
bitrot: | |
needs: [skip_check] | |
if: | | |
github.event.pull_request.draft == false && | |
(github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true') | |
name: Bitrot check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
override: false | |
# Go cache for building geth-utils | |
- name: Go cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
# https://github.com/actions/cache/issues/810 | |
env: | |
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 5 | |
- name: Cargo cache | |
uses: Swatinem/rust-cache@v2 | |
# Build benchmarks to prevent bitrot | |
- name: Build benchmarks | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --benches --examples --all-features | |
doc-links: | |
needs: [skip_check] | |
if: | | |
github.event.pull_request.draft == false && | |
(github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true') | |
name: Intra-doc links | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
override: false | |
# Go cache for building geth-utils | |
- name: Go cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
# https://github.com/actions/cache/issues/810 | |
env: | |
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 5 | |
- name: Cargo cache | |
uses: Swatinem/rust-cache@v2 | |
- name: cargo fetch | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fetch | |
# Ensure intra-documentation links all resolve correctly | |
# Requires #![deny(intra_doc_link_resolution_failure)] in crates. | |
- name: Check intra-doc links | |
uses: actions-rs/cargo@v1 | |
with: | |
command: doc | |
args: --no-deps --all --document-private-items | |
fmt: | |
needs: [skip_check] | |
if: | | |
github.event.pull_request.draft == false && | |
(github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true') | |
name: Rustfmt | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
override: false | |
# Go cache for building geth-utils | |
- name: Go cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
# https://github.com/actions/cache/issues/810 | |
env: | |
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 5 | |
- name: Cargo cache | |
uses: Swatinem/rust-cache@v2 | |
- name: cargo check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --all-features | |
- run: rustup component add rustfmt | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check |