feat: openvm v0.3.0 #6543
Workflow file for this run
This file contains hidden or 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: Common | |
on: | |
push: | |
branches: | |
- main | |
- staging | |
- develop | |
- alpha | |
paths: | |
- 'common/**' | |
- '!common/version/version.go' | |
- '.github/workflows/common.yml' | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
paths: | |
- 'common/**' | |
- '!common/version/version.go' | |
- '.github/workflows/common.yml' | |
jobs: | |
check: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2024-12-06 | |
override: true | |
components: rustfmt, clippy | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.x | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache cargo | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: "common/libzkp/impl -> target" | |
- name: Setup SSH for private repos | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.OPENVM_GPU_SSH_PRIVATE_KEY }} | |
- name: Lint | |
working-directory: 'common' | |
run: | | |
rm -rf $HOME/.cache/golangci-lint | |
make lint | |
goimports-lint: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.x | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install goimports | |
run: go install golang.org/x/tools/cmd/goimports | |
- name: Run goimports lint | |
working-directory: 'common' | |
run: goimports -local scroll-tech/common/ -w . | |
- name: Run go mod tidy | |
working-directory: 'common' | |
run: go mod tidy | |
# If there are any diffs from goimports or go mod tidy, fail. | |
- name: Verify no changes from goimports and go mod tidy | |
working-directory: 'common' | |
run: | | |
if [ -n "$(git status --porcelain)" ]; then | |
exit 1 | |
fi | |
tests: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.x | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Solc | |
uses: supplypike/setup-bin@v3 | |
with: | |
uri: 'https://github.com/ethereum/solidity/releases/download/v0.8.24/solc-static-linux' | |
name: 'solc' | |
version: '0.8.24' | |
- name: Install Geth Tools | |
uses: gacts/install-geth-tools@v1 | |
- name: Build prerequisites | |
run: | | |
make dev_docker | |
- name: Test common packages | |
working-directory: 'common' | |
run: | | |
go test -v -race -gcflags="-l" -ldflags="-s=false" -coverprofile=coverage.txt -covermode=atomic ./... | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
flags: common |