Skip to content

Instantly share code, notes, and snippets.

@griffero
Created September 22, 2019 19:42
Show Gist options
  • Save griffero/de97b6d42c58e08665bda854fd57db2c to your computer and use it in GitHub Desktop.
Save griffero/de97b6d42c58e08665bda854fd57db2c to your computer and use it in GitHub Desktop.
config.yml pronto
jobs:
build:
working_directory: ~/app
docker:
- image: platanus/compose:1.22.0
steps:
- checkout
- setup_remote_docker
- run: docker info
- run: docker-compose -f docker-compose.ci.yml pull
- run: docker-compose -f docker-compose.ci.yml build test
- run: docker-compose -f docker-compose.ci.yml run test gem install bundler -v $(cat Gemfile.lock | tail -1 | tr -d " ")
- run: bin/cibuild services
- run: bin/cibuild deps
- run: bin/cibuild db
- run: bin/cibuild code_review
- run: bin/cibuild tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment