forked from yetanotherco/aligned_layer
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (36 loc) · 1023 Bytes
/
build-go.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: build-go-projects
on:
merge_group:
push:
branches: [main]
pull_request:
branches: ["*"]
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
- name: Build Mina bindings
run: make build_mina_linux
- name: Build Mina Account bindings
run: make build_mina_account_linux
- name: Build operator
run: go build operator/cmd/main.go
- name: Build aggregator
run: go build aggregator/cmd/main.go