Created
September 22, 2019 19:42
-
-
Save griffero/de97b6d42c58e08665bda854fd57db2c to your computer and use it in GitHub Desktop.
config.yml pronto
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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