Skip to content

Commit 243ac5f

Browse files
committed
Update target names for examples in CI scritps
1 parent f6b6c17 commit 243ac5f

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/build_linux.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -104,18 +104,18 @@ jobs:
104104
run: |
105105
make -C build assigner clang transpiler -j$(nproc)
106106
107-
- name: Build IR of the examples
107+
- name: Build IR of the C++ examples
108108
run: |
109-
make -C build circuit_examples -j$(nproc)
110-
ls -al ./build/examples
109+
make -C build circuit_cpp_examples -j$(nproc)
110+
ls -al ./build/examples/cpp
111111
112-
- name: Build circuit and assigner of the examples
112+
- name: Build circuit and assigner of the C++ examples
113113
run: |
114-
make -C build assign_examples -j$(nproc)
114+
make -C build assign_cpp_examples -j$(nproc)
115115
116-
- name: Build proof for the circuit of the examples
116+
- name: Build proof for the circuit of the C++ examples
117117
run: |
118-
make -C build prove_examples -j$(nproc)
118+
make -C build prove_cpp_examples -j$(nproc)
119119
120120
- name: Build rslang
121121
run: |

.github/workflows/build_macos.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,15 @@ jobs:
7676
run: |
7777
make -C build assigner clang transpiler -j$(sysctl -n hw.logicalcpu)
7878
79-
- name: Build IR of the examples
79+
- name: Build IR of the C++ examples
8080
run: |
81-
make -C build circuit_examples -j$(sysctl -n hw.logicalcpu)
82-
ls -al ./build/examples
81+
make -C build circuit_cpp_examples -j$(sysctl -n hw.logicalcpu)
82+
ls -al ./build/examples/cpp
8383
84-
- name: Build circuit and assigner of the examples
84+
- name: Build circuit and assigner of the C++ examples
8585
run: |
86-
make -C build assign_examples -j$(sysctl -n hw.logicalcpu)
86+
make -C build assign_cpp_examples -j$(sysctl -n hw.logicalcpu)
8787
88-
- name: Build proof for the circuit of the examples
88+
- name: Build proof for the circuit of the C++ examples
8989
run: |
90-
make -C build prove_examples -j$(sysctl -n hw.logicalcpu)
90+
make -C build prove_cpp_examples -j$(sysctl -n hw.logicalcpu)

0 commit comments

Comments
 (0)