add build and test targets

This commit is contained in:
Andreas Neue 2022-11-25 10:18:08 +01:00
parent fc59afa312
commit 224e1b3cf0
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ deploy: build test upload pre-deploy pre-local pull start post-local post-deploy
build:
ifneq (,$(wildcard build.sh))
@- echo "\n### running build script"
./build.sh || (echo "### build failed $$?"; exit 1)
@- ./build.sh || (echo "### build failed $$?"; exit 1)
else
@- echo "\n### no build script found"
endif
@ -25,7 +25,7 @@ endif
test:
ifneq (,$(wildcard test.sh))
@- echo "\n### running test script"
./test.sh || (echo "### test failed $$?; exit 1)
@- ./test.sh || (echo "### test failed $$?"; exit 1)
else
@- echo "\n### no test script found"
endif