Skip to content

Commit 1ea4c4e

Browse files
committed
Circuits proving added to github actions.
1 parent 5df446c commit 1ea4c4e

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.github/workflows/build_linux.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,18 @@ jobs:
104104
run: |
105105
make -C build assigner clang transpiler -j$(nproc)
106106
107-
- name: Build examples
107+
- name: Build IR of the examples
108108
run: |
109109
make -C build circuit_examples -j$(nproc)
110110
ls -al ./build/examples
111111
112-
- name: Build circuits
112+
- name: Build circuit and assigner of the examples
113113
run: |
114-
make -C build run_examples -j$(nproc)
114+
make -C build assign_examples -j$(nproc)
115+
116+
- name: Build proof for the circuit of the examples
117+
run: |
118+
make -C build proof_examples -j$(nproc)
115119
116120
- name: Build rslang
117121
run: |

.github/workflows/build_macos.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,15 @@ jobs:
7676
run: |
7777
make -C build assigner clang transpiler -j$(sysctl -n hw.logicalcpu)
7878
79-
- name: Build examples
79+
- name: Build IR of the examples
8080
run: |
8181
make -C build circuit_examples -j$(sysctl -n hw.logicalcpu)
82+
ls -al ./build/examples
8283
83-
- name: Build circuits
84+
- name: Build circuit and assigner of the examples
8485
run: |
85-
make -C build run_examples -j$(sysctl -n hw.logicalcpu)
86+
make -C build assign_examples -j$(sysctl -n hw.logicalcpu)
87+
88+
- name: Build proof for the circuit of the examples
89+
run: |
90+
make -C build proof_examples -j$(sysctl -n hw.logicalcpu)

0 commit comments

Comments
 (0)