refactor(aggregator): Aggregator retries #186
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: build-go-projects | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ["*"] | |
paths: | |
- "operator/**" | |
- "aggregator/**" | |
- "common/**" | |
- "core/**" | |
- "metrics/**" | |
- ".github/workflows/build-go.yml" | |
env: | |
FFI_FOR_RELEASE: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
cache: false | |
- name: foundry-toolchain | |
uses: foundry-rs/foundry-toolchain@v1.2.0 | |
- name: Build SP1 bindings | |
run: make build_sp1_linux | |
- name: Build Old SP1 bindings | |
run: make build_sp1_linux_old | |
- name: Build Risc Zero go bindings | |
run: make build_risc_zero_linux | |
- name: Build Old Risc Zero go bindings | |
run: make build_risc_zero_linux_old | |
- name: Build Merkle Tree bindings | |
run: make build_merkle_tree_linux | |
- name: Build operator | |
run: go build operator/cmd/main.go | |
- name: Build aggregator | |
run: go build aggregator/cmd/main.go | |
- name: Test Go | |
run: make test |