Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
[MPTWG] Update CI for MPTWG (#1591)
Browse files Browse the repository at this point in the history
### Description

Enable the MPT witness generator CI check

### Issue Link


### Type of change

Bug fix (non-breaking change which fixes an issue)

### Contents

- Run Go build and Go format on MPTWG
- Ignore main tests CI run if no change on zkevm-circuits
- Ignore MPTWG CI run if no change on MPTWG

### Rationale

We want to enable automatic checks on MPTWG
  • Loading branch information
ChihChengLiang authored Sep 12, 2023
1 parent 7449c4f commit 7526cbd
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
cancel_others: 'true'
concurrent_skipping: 'same_content_newer'
paths_ignore: '["**/README.md"]'
paths_ignore: '["**/README.md", "mpt-witness-generator/**"]'

lints:
needs: [skip_check]
Expand Down
49 changes: 49 additions & 0 deletions .github/workflows/mpt-witness-generator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: MPT Witness Generator Checks

on:
merge_group:
pull_request:
types: [synchronize, opened, reopened, ready_for_review]
push:
branches:
- main

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: '["mpt-witness-generator/**"]'


build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Format
uses: Jerome1337/gofmt-action@v1.0.5
with:
gofmt-path: './mpt-witness-generator'
gofmt-flags: '-l -d'

- name: Build
working-directory: ./mpt-witness-generator
run: go build -v ./...

- name: Test
working-directory: ./mpt-witness-generator
env:
NO_GETH: true
run: go test -v ./...
33 changes: 0 additions & 33 deletions mpt-witness-generator/.github/workflows/go.yml

This file was deleted.

0 comments on commit 7526cbd

Please sign in to comment.