Skip to content

Commit

Permalink
fixup! Add test-network sample test
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Brandenburger <[email protected]>
  • Loading branch information
mbrandenburger committed Jul 26, 2024
1 parent 4236ad9 commit 9aa0ecd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion samples/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ include $(TOP)/build.mk

SAMPLES = application chaincode demos deployment

build clean:
build test clean clobber:
$(foreach DIR, $(SAMPLES), $(MAKE) -C $(DIR) $@ || exit;)

2 changes: 1 addition & 1 deletion samples/application/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ include $(TOP)/build.mk

SUB_DIRS = simple-cli-go simple-go

all build test clean clobber:
build test clean clobber:
$(foreach DIR, $(SUB_DIRS), $(MAKE) -C $(DIR) $@ || exit ;)
2 changes: 1 addition & 1 deletion samples/chaincode/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ include $(TOP)/build.mk

SUB_DIRS = auction auction-go echo echo-go kv-test kv-test-go

all build test clean clobber:
build test clean clobber:
$(foreach DIR, $(SUB_DIRS), $(MAKE) -C $(DIR) $@ || exit ;)
2 changes: 1 addition & 1 deletion samples/demos/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ include $(TOP)/build.mk

DEMOS = irb

build clean:
build test clean clobber:
$(foreach DIR, $(DEMOS), $(MAKE) -C $(DIR) $@ || exit;)

2 changes: 1 addition & 1 deletion samples/deployment/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ include $(TOP)/build.mk

DEPLOYMENT_SAMPLES = test-network

build test clean:
build test clean clobber:
$(foreach DIR, $(DEPLOYMENT_SAMPLES), $(MAKE) -C $(DIR) $@ || exit;)

0 comments on commit 9aa0ecd

Please sign in to comment.