Skip to content

Commit 70b4a5c

Browse files
committed
Split CI
1 parent e8afc68 commit 70b4a5c

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

.github/workflows/build-and-test-go.yml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,26 @@ jobs:
3939

4040
- name: Build Merkle Tree bindings
4141
run: make build_merkle_tree_linux
42-
43-
- name: Build Mina bindings
44-
run: make build_mina_linux
45-
46-
- name: Build Mina Account bindings
47-
run: make build_mina_account_linux
48-
42+
4943
- name: Build operator
5044
run: go build operator/cmd/main.go
5145

5246
- name: Build aggregator
5347
run: go build aggregator/cmd/main.go
48+
49+
build-mina:
50+
runs-on: ubuntu-latest
51+
52+
steps:
53+
- uses: actions/checkout@v4
54+
55+
- uses: actions/setup-go@v5
56+
with:
57+
go-version: "1.23"
58+
cache: false
59+
60+
- name: Build Mina bindings
61+
run: make build_mina_linux
62+
63+
- name: Build Mina Account bindings
64+
run: make build_mina_account_linux

0 commit comments

Comments
 (0)