Push event #3198 failed

  • Ran for
  • Total time
  • New branch build
travis-ci/travis-tasks:.travis.yml@df49320
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
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "services": [
    "redis"
  ],
  "cache": {
    "bundler": true
  },
  "jobs": {
    "include": [
      {
        "stage": "testing time",
        "script": [
          "bundle exec rspec -f documentation --color --order rand spec"
        ]
      },
      {
        "stage": ":ship: it to quay.io",
        "services": [],
        "script": [
          "make ship"
        ]
      }
    ]
  }
}