Skip to content

Instantly share code, notes, and snippets.

@marcelog
Created April 2, 2017 15:44
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save marcelog/f044da2935bb7d32d0fe6442647a75cd to your computer and use it in GitHub Desktop.
Save marcelog/f044da2935bb7d32d0fe6442647a75cd to your computer and use it in GitHub Desktop.
Example for buildspec file for Amazon CodeBuild and Amazon CodePipeline to achieve Continuous Integration and Continuous Delivery for a ServerLess project
version: 0.1
phases:
install:
commands:
- printenv
- npm install
build:
commands:
- npm run build
post_build:
commands:
- mkdir -p build
- tar jcf build/myApp-$(date +%Y%m%d%H%m%S).tar.bz2 .eslintrc.js .gitignore README.md buildspec.yml package.json serverless.yml src test
- npm install -g serverless
- serverless -v -s $(echo ${CODEBUILD_INITIATOR} | cut -d'/' -f2 | cut -d'_' -f3) deploy
artifacts:
files:
- build*/**
discard-paths: yes
@martinmicunda
Copy link

Hi.

Do you deploy to different AWS accounts? I am looking for an examples how to deploy to different AWS accounts through codebuild.

Thanks

@katp4
Copy link

katp4 commented Jul 4, 2017

@martinmicunda My team had a look into it recently, I don't believe that's currently possible.

@jamesrenaud
Copy link

@martinmicunda you can use Lambda to do cross account deployments via assume role. The IAM role you're running codebuild has to have permissions to assume role, and then the role on the other account must have appropriate permissions for the resources you're trying to access

@donaldev
Copy link

donaldev commented Jul 2, 2018

I am using similar post-build commands however when using it with CodePipeline it fails on deployment as it cannot find the appspec.yml file. I understand that this is because it is in compressed format - how do I unzip a file inside an EC2 instance - should it be done in the buildspec.yml file?

@Amanfavas
Copy link

Hi,
I have five lambda,In the five lambda function inside , I need to install node-modules, With the help of codebuild, buildspec file.
How to do that?

@a-devops-guy
Copy link

is there a way to print phase status (success or failed)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment