Skip to content

Commit ebd6e60

Browse files
committed
wip
1 parent e58957c commit ebd6e60

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ endef
5454

5555
# Fast bootstrap
5656
all: 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
6060
full: 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.
6565
release: all bb-cpp-release-dir bb-ts-cross-copy
@@ -293,6 +293,9 @@ yarn-project-benches: yarn-project
293293
release-image: yarn-project
294294
$(call build,$@,release-image)
295295

296+
release-image-tests: release-image
297+
$(call test,$@,release-image)
298+
296299
boxes: yarn-project
297300
$(call build,$@,boxes)
298301

@@ -305,7 +308,6 @@ playground: yarn-project
305308
playground-tests: playground
306309
$(call test,$@,playground)
307310

308-
# Docs - Project documentation
309311
docs: yarn-project
310312
$(call build,$@,docs)
311313

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ function sort_by_cpus {
207207
function 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
}

0 commit comments

Comments
 (0)