AMD64
Ruby
Git
This is the configuration for all of build #1197, including this job
language: ruby
services:
- redis-server
cache: bundler
script: bundle exec rspec -f documentation --color --order rand spec
jobs:
include:
- stage: "testing time"
- stage: ":ship: it to Quay.io"
sudo: required
dist: trusty
ruby:
services:
addons:
before_install: echo "skipping"
install: echo "skipping"
script: ./script/docker-build-and-push
Build Config
{
"os": [
"linux"
],
"cache": {
"bundler": true
},
"matrix": {
"include": [
{
"stage": "testing time"
},
{
"dist": "trusty",
"sudo": true,
"stage": ":ship: it to Quay.io",
"script": [
"./script/docker-build-and-push"
],
"install": [
"echo \"skipping\""
],
"before_install": [
"echo \"skipping\""
]
}
]
},
"script": [
"bundle exec rspec -f documentation --color --order rand spec"
],
"language": "ruby",
"services": [
"redis"
]
}