This repository was archived by the owner on Oct 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
CodeBuildΒ #9
Copy link
Copy link
Open
Description
aws-cloudformation-resource-providers-redshift/buildspec.yml
Lines 9 to 14 in 322c91a
| 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
PatMyron
Metadata
Metadata
Assignees
Labels
No labels