File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff 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 : |
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments