Skip to content

Update Aligned to 0.7.0 #86

Update Aligned to 0.7.0

Update Aligned to 0.7.0 #86

Workflow file for this run

name: build-go-projects
on:
merge_group:
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.22'
cache: false
- name: Build SP1 bindings
run: make build_sp1_linux
- name: Build Risc Zero go bindings
run: make build_risc_zero_linux
- name: Build Halo2-KZG bindings
run: make build_halo2_kzg_linux
- name: Build Halo2-IPA bindings
run: make build_halo2_ipa_linux
- name: Build Merkle Tree bindings
run: make build_merkle_tree_linux
<<<<<<< HEAD

Check failure on line 38 in .github/workflows/build-go.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-go.yml

Invalid workflow file

You have an error in your yaml syntax on line 38
- name: Build Mina bindings
run: make build_mina_linux
- name: Build Mina Account bindings
run: make build_mina_account_linux
=======
- name: Build Old Merkle Tree bindings
run: make build_merkle_tree_linux_old
>>>>>>> v0.7.0
- name: Build operator
run: go build operator/cmd/main.go
- name: Build aggregator
run: go build aggregator/cmd/main.go