Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .travis.yml for build config #266

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

change version to support older ruby

0937338
Select commit
Loading
Failed to load commit list.
Open

Update .travis.yml for build config #266

change version to support older ruby
0937338
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch required action Jan 3, 2024 in 3m 23s

Build Errored

The build errored, just like the previous build.

Details

This is a normal build for the build-config-update branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Xenial)
Ruby Version 2.4.10
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "rvm": [
    "2.4.10"
  ],
  "cache": {
    "bundler": true
  },
  "env": [
    "global={:PATH=>\"/snap/bin:$PATH\"}={:COVERAGE=>\"1\"}"
  ],
  "addons": {
    "apt": {
      "packages": [
        "rabbitmq-server"
      ]
    },
    "postgresql": "9.6"
  },
  "services": [
    "memcached",
    "redis",
    "rabbitmq"
  ],
  "before_install": [
    "gem install rubygems-update -v 3.3.27",
    "bundle config https://gems.contribsys.com/ $BUNDLE_GEMS__CONTRIBSYS__COM",
    "gem install bundler -v 2.3.26"
  ],
  "jobs": {
    "include": [
      {
        "stage": "testing time",
        "script": [
          "bundle exec rspec"
        ]
      },
      {
        "stage": ":ship: it to quay.io",
        "dist": "bionic",
        "services": [
    ],
    "addons": {
      "snaps": [
        {
          "name": "docker",
          "channel": "latest/beta"
        }
      ]
    },
    "before_install": [
      "echo \"skipping\""
    ],
    "install": [
      "echo \"skipping\""
    ],
    "script": [
      "make ship"
    ],
    "if": "(branch = master and type = push ) OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true",
    "before_script": [
      "skip"
    ]
  }
]

},
"before_script": [
"createdb travis_test || true",
"curl -fs https://raw.githubusercontent.com/travis-ci/travis-migrations/master/db/main/structure.sql | psql travis_test"
]
}