travis-ci/travis-tasks:.travis.yml@fdb79f4
language: ruby
services:
- redis-server
cache: bundler
jobs:
include:
- stage: "testing time"
script: bundle exec rspec -f documentation --color --order rand spec
- stage: ":ship: it to quay.io"
ruby:
services:
script: make ship
Build Config
{
"os": [
"linux"
],
"jobs": {
"include": [
{
"stage": "testing time",
"script": [
"bundle exec rspec -f documentation --color --order rand spec"
]
},
{
"stage": ":ship: it to quay.io",
"script": [
"make ship"
],
"services": []
}
]
},
"cache": {
"bundler": true
},
"language": "ruby",
"services": [
"redis"
]
}