Skip to content

Commit 21f3b93

Browse files
committed
chore: fixed formatting in makefile
1 parent 03ac850 commit 21f3b93

1 file changed

Lines changed: 18 additions & 19 deletions

File tree

Makefile

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -185,24 +185,23 @@ help: ## Show this help message
185185
@echo 'Usage: make [target]'
186186
@echo ''
187187
@echo 'Available targets:'
188-
@echo ' pr-check Run pre-commit checks (fmt, clippy, tests)'
189-
@echo ' integration-tests Build and run AWS integration tests'
190-
@echo ' check-event-features Test individual event features'
191-
@echo ' fmt Format code with cargo fmt'
192-
@echo ' build-examples Build example Lambda functions'
193-
@echo ' Usage: EXAMPLES="basic-lambda" OUTPUT_DIR=/make build-examples'
194-
@echo ' test-rie Test Lambda with Runtime Interface Emulator'
195-
@echo ' Usage: HANDLERS_TO_BUILD="basic-lambda basic-sqs" make test-rie'
196-
@echo ' Usage: HANDLERS_TO_BUILD="basic-lambda" HANDLER="basic-lambda" make test-rie'
197-
@echo ' test-rie-lmi Test RIE in Lambda Managed Instance mode'
198-
@echo ' Usage: RIE_MAX_CONCURRENCY=4 HANDLERS_TO_BUILD="basic-lambda-concurrent" make test-rie-lmi'
199-
@echo ' test-dockerized-concurrent Run concurrent LMI test scenarios'
200-
@echo ' test-dockerized Run dockerized test harness'
201-
@echo ' nuke Kill all running Docker containers'
188+
@echo ' pr-check Run pre-commit checks (fmt, clippy, tests)'
189+
@echo ' integration-tests Build and run AWS integration tests'
190+
@echo ' check-event-features Test individual event features'
191+
@echo ' fmt Format code with cargo fmt'
192+
@echo ' build-examples Build example Lambda functions'
193+
@echo ' Usage: EXAMPLES="basic-lambda" OUTPUT_DIR=/ make build-examples'
194+
@echo ' test-rie Test Lambda with Runtime Interface Emulator'
195+
@echo ' Usage: HANDLERS_TO_BUILD="basic-lambda basic-sqs" make test-rie'
196+
@echo ' Usage: HANDLERS_TO_BUILD="basic-lambda" HANDLER="basic-lambda" make test-rie'
197+
@echo ' test-rie-lmi Test RIE in Lambda Managed Instance mode'
198+
@echo ' Usage: RIE_MAX_CONCURRENCY=4 HANDLERS_TO_BUILD="basic-lambda-concurrent" make test-rie-lmi'
199+
@echo ' test-dockerized Run dockerized test harness'
200+
@echo ' test-dockerized-concurrent Run concurrent LMI test scenarios'
201+
@echo ' nuke Kill all running Docker containers'
202202
@echo ''
203203
@echo 'Environment variables:'
204-
@echo ' EXAMPLES Space-separated list of examples to build (for build-examples)'
205-
@echo ' HANDLERS_TO_BUILD Space-separated list of handlers to build for RIE (for test-rie)'
206-
@echo ' HANDLER Specific handler to run (defaults to first in HANDLERS_TO_BUILD)'
207-
@echo ' OUTPUT_DIR Directory for built binaries (default: /tmp/var-task for build-examples, /var/task for Docker)'
208-
@echo ' RIE_MAX_CONCURRENCY Max concurrent Lambda invocations for LMI mode (for test-rie-lmi)'
204+
@echo ' HANDLERS_TO_BUILD Space-separated list of handlers to build for RIE (for test-rie)'
205+
@echo ' HANDLER Specific handler to run (defaults to first in HANDLERS_TO_BUILD)'
206+
@echo ' OUTPUT_DIR Directory for built binaries (default: test/dockerized/tasks)'
207+
@echo ' RIE_MAX_CONCURRENCY Max concurrent Lambda invocations for LMI mode (for test-rie-lmi)'

0 commit comments

Comments
 (0)