mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Exit pipeline step if extensions build or tests fail
Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
parent
dd925a87de
commit
4be9a5e594
4
Makefile
4
Makefile
@ -56,10 +56,10 @@ else
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
build-extensions:
|
build-extensions:
|
||||||
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), $(MAKE) -C $(dir) build;)
|
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), $(MAKE) -C $(dir) build || exit;)
|
||||||
|
|
||||||
test-extensions:
|
test-extensions:
|
||||||
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), $(MAKE) -C $(dir) test;)
|
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), $(MAKE) -C $(dir) test || exit;)
|
||||||
|
|
||||||
build-npm: build-extension-types
|
build-npm: build-extension-types
|
||||||
yarn npm:fix-package-version
|
yarn npm:fix-package-version
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user