forked from yetanotherco/aligned_layer
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 835 Bytes
/
Copy pathbuild.yml
File metadata and controls
33 lines (30 loc) · 835 Bytes
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
name: build-go-projects
on:
merge_group:
push:
branches: [main]
pull_request:
branches: ["*"]
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 operator
run: go build operator/cmd/main.go
- name: Build aggregator
run: go build aggregator/cmd/main.go
- name: Build task sender
run: go build task_sender/cmd/main.go