Push event #2178.1 passed

  • Ran for
AMD64
no language set
Git
travis-ci/travis-tasks:.travis.yml@aca32fd
language: ruby

services:
  - redis-server

cache: bundler

addons:
  snaps:
  - name: docker
    channel: latest/beta

env:
  global:
    - PATH=/snap/bin:$PATH

jobs:
  include:
    - stage: "testing time"
      script: bundle exec rspec -f documentation --color --order rand spec
    - stage: ":ship: it to quay.io"
      ruby:
      before_install:
      before_script:
      install:
      services:
      cache:
        bundler: false
      script: make ship
      if: (branch = master and type = push ) OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true
Build Config
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "services": [
    "redis"
  ],
  "cache": {
    "bundler": true
  },
  "addons": {
    "snaps": [
      {
        "name": "docker",
        "channel": "latest/beta"
      }
    ]
  },
  "env": {
    "global": [
      {
        "PATH": "/snap/bin:$PATH"
      }
    ]
  },
  "jobs": {
    "include": [
      {
        "stage": "testing time",
        "script": [
          "bundle exec rspec -f documentation --color --order rand spec"
        ]
      },
      {
        "stage": ":ship: it to quay.io",
        "before_install": [],
        "before_script": [],
        "install": [],
        "services": [],
        "cache": {
          "bundler": false
        },
        "script": [
          "make ship"
        ],
        "if": "(branch = master and type = push ) OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true"
      }
    ]
  }
}