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

chore: Migrate rvgo-abigen workflow to CircleCI [10/N] #145

Merged
merged 1 commit into from
Jan 24, 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
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ workflows:
version: "1.3.1"
asterisc-commit: "25feabf"
- go-lint
- rvgo-abigen
- rvgo-tests
- rvsol-lint
- rvsol-tests
Expand Down Expand Up @@ -387,6 +388,23 @@ jobs:
name: Run lint
command: golangci-lint run

rvgo-abigen:
executor: default
steps:
- checkout
- install-dependencies
- install-go-modules
- run:
name: Build rvsol
command: forge build
working_directory: rvsol
- run:
name: Check bindings
command: |
make gen-bindings
git diff --exit-code bindings
working_directory: rvgo

rvgo-tests:
executor: default
steps:
Expand Down
1 change: 1 addition & 0 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ just = "1.37.0"

# Go dependencies
"ubi:golangci/golangci-lint" = "v1.63.4"
"go:github.com/ethereum/go-ethereum/cmd/abigen" = "1.14.9"
"go:github.com/ethereum/go-ethereum/cmd/geth" = "1.14.7"
"go:gotest.tools/gotestsum" = "1.12.0"

Expand Down
Loading