I'm trying to find if they offer or plan to offer these features: 1. Caching. CircleCI and Travis cache intermediate build artifacts (e.g., virtualenv in python) to reduce build time. 2. Github pull request integration (red cross on pull requests if the build fails). 3. Chat integration. Sending a message to slack or hipchat when the build fails. 4. SSH into build container. Very handy for rare but difficult to local…
AWS CodeBuild – Build and test code with continuous scaling
11–20 of 46 posts
Re: AWS CodeBuild – Build and test code with continuous scaling
#12Re: AWS CodeBuild – Build and test code with continuous scaling
#13Re: AWS CodeBuild – Build and test code with continuous scaling
#14https://aws.amazon.com/blogs/aws/aws-codebuild-fully-managed...
Re: AWS CodeBuild – Build and test code with continuous scaling
#15How does this compare with Amazon CodeDeploy?
Using CodePipelines and CodeCommit you can create a workflow where a git commit to a CodeCommit repo can get picked up by pipelines and sent to the build service (i.e. CodeBuild or Jenkins). Then CodeBuild will push the resulting artifact to S3. CodeDeploy (and Elastic Beanstalk, CloudFormation and OpsWorks) can be configured to deploy the built artifacts to your application fleet.
It's the last piece in AWS's solution for continuous deployment.
Re: AWS CodeBuild – Build and test code with continuous scaling
#16Re: AWS CodeBuild – Build and test code with continuous scaling
#17What's frustrating is if you go to the aws reinvent page they tell you a lot except the dates of the conference!!! https://reinvent.awsevents.com/ I was wondering why all these aws announcements were here.
Re: AWS CodeBuild – Build and test code with continuous scaling
#18As it sounds like it's running inside Docker itself, I'd like to know if this supports "Docker in Docker". My requirement is not strictly DinD however I run multiple containers during CI (Postgres, node, test containers, etc). Possible via different approaches in CircleCI, Shippable and SemaphoreCI. I don't actually build any containers to save.