Skip to content

Commit 51e121e

Browse files
committed
Fix PHONY targets and add invoke to CI
1 parent 1b54a56 commit 51e121e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lambda-debugging-sam-java/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: usage build build-docker build-local wait deploy invoke clean
1+
.PHONY: usage install build build-docker build-local build-sam wait deploy deploy-aws deploy-sam invoke clean start stop ready test-ci
22

33
AWS_ENDPOINT_URL ?= http://localhost.localstack.cloud:4566
44
AWS ?= AWS_ENDPOINT_URL=$(AWS_ENDPOINT_URL) \
@@ -82,5 +82,5 @@ ready: ## Wait until LocalStack is running
8282
@localstack wait -t 30 && echo LocalStack is ready to use! || (echo Gave up waiting on LocalStack, exiting. && exit 1)
8383

8484
test-ci:
85-
make start install ready deploy; return_code=`echo $$?`;\
85+
make start install ready deploy wait invoke; return_code=`echo $$?`;\
8686
echo "Interactive debugging not tested in CI"; exit $$return_code;

0 commit comments

Comments
 (0)