Last active
August 29, 2015 14:18
-
-
Save suryagaddipati/6b2badbbcdceff2e4c35 to your computer and use it in GitHub Desktop.
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
| # will run docker-compose run ci | |
| run: 'ci' | |
| #will run in parallel | |
| run: | |
| - 'rspec' # These are defined in docker-compose.yml | |
| - 'cucumber' #These are defined in docker-compose.yml | |
| plugins | |
| - checkstyle | |
| - artifact: 'z.gz' | |
| - docker_publish #can be surrrounded by if statements | |
| notifications: | |
| - hipchat | |
Author
Author
cucumber:
extends: test.yml
build: bundle exec cumcumber
rspec:
extends: test.yml
build: bundle exec rspec
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tasks