File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -54,12 +54,12 @@ endef
5454
5555# Fast bootstrap
5656all : release-image barretenberg boxes playground docs aztec-up \
57- bb-tests l1-contracts-tests yarn-project-tests boxes-tests playground-tests aztec-up-tests docs-tests noir-protocol-circuits-tests
57+ bb-tests l1-contracts-tests yarn-project-tests boxes-tests playground-tests aztec-up-tests docs-tests noir-protocol-circuits-tests release-image-tests
5858
5959# Full bootstrap
6060full : release-image barretenberg boxes playground docs aztec-up \
6161 bb-cpp-full yarn-project-benches \
62- bb-full-tests l1-contracts-tests yarn-project-tests boxes-tests playground-tests aztec-up-tests docs-tests noir-protocol-circuits-tests
62+ bb-full-tests l1-contracts-tests yarn-project-tests boxes-tests playground-tests aztec-up-tests docs-tests noir-protocol-circuits-tests release-image-tests
6363
6464# Release. Everything plus copy bb cross compiles to ts projects.
6565release : all bb-cpp-release-dir bb-ts-cross-copy
@@ -293,6 +293,9 @@ yarn-project-benches: yarn-project
293293release-image : yarn-project
294294 $(call build,$@ ,release-image)
295295
296+ release-image-tests : release-image
297+ $(call test,$@ ,release-image)
298+
296299boxes : yarn-project
297300 $(call build,$@ ,boxes)
298301
@@ -305,7 +308,6 @@ playground: yarn-project
305308playground-tests : playground
306309 $(call test,$@ ,playground)
307310
308- # Docs - Project documentation
309311docs : yarn-project
310312 $(call build,$@ ,docs)
311313
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ function sort_by_cpus {
207207function test_cmds {
208208 if [ "$# " -eq 0 ]; then
209209 # Ordered with longest running first, to ensure they get scheduled earliest.
210- set -- yarn-project/end-to-end aztec-up yarn-project noir-projects boxes playground barretenberg l1 -contracts docs ci3
210+ set -- yarn-project/end-to-end aztec-up yarn-project noir-projects boxes playground barretenberg l1 -contracts docs ci3 release-image
211211 fi
212212 parallel -k --line-buffer './{}/bootstrap.sh test_cmds' ::: $@ | filter_test_cmds | sort_by_cpus
213213}
You can’t perform that action at this time.
0 commit comments