This repository was archived by the owner on Oct 23, 2025. It is now read-only.

Description
|
build: |
|
commands: |
|
# pre-build check for commit hooks |
|
- pre-commit run --all-files |
|
# install cloudformation-cli dependencies |
|
- pip install cloudformation-cli cloudformation-cli-java-plugin |
Your CodeBuild config is not building anything. Please change this to mimic this:
build:
commands:
- pre-commit run --all-files
- |
for directory in $CODEBUILD_SRC_DIR/*/; do
cd "$directory"
mvn -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B clean verify --no-transfer-progress
done