Skip to content

Commit

Permalink
Added buildspec file used by CodeBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-aws committed Jun 23, 2020
1 parent 8042357 commit c7c3683
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions buildspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 0.2

phases:
install:
runtime-versions:
java: corretto11
pre_build:
commands:
- echo Nothing to do in the pre_build phase...
build:
commands:
- echo Build started on `date`
- mvn clean install
- echo Running unit tests
- mvn clean test
- echo Running integration tests
- mvn failsafe:integration-test
post_build:
commands:
- echo Build completed on `date`

0 comments on commit c7c3683

Please sign in to comment.