Skip to content

Commit

Permalink
Added buildspec.yml for aws codebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
VassilisSoum committed Apr 5, 2021
1 parent 727da53 commit b04157c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions buildspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 0.2

phases:
pre_build:
commands:
- echo Logging in to Amazon ECR...
- aws ecr get-login-password --region $AWS_DEFAULT_REGION | docker login --username AWS --password-stdin $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com
build:
commands:
- echo Running tests
- sbt test

0 comments on commit b04157c

Please sign in to comment.