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 #846

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Update .travis.yml for build config

4fac484
Select commit
Loading
Failed to load commit list.
Open

Update .travis.yml for build config #846

Update .travis.yml for build config
4fac484
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch required action Jan 2, 2024 in 4m 48s

Build Errored

The build errored.

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 has eight jobs, running in parallel.

Job Ruby OS State
1550.1 jruby Linux errored
1550.2 2.4 Linux errored
1550.3 2.5 Linux errored
1550.4 2.6 Linux failed
1550.5 2.7 Linux passed
1550.6 2.3 Linux errored
1550.7 2.5 macOS errored
1550.8 2.6 macOS errored

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Xenial)
Ruby Versions jruby, 2.4, 2.5, 2.6, 2.7
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "cache": {
    "bundler": true
  },
  "rvm": [
    "jruby",
    "2.4",
    "2.5",
    "2.6",
    "2.7"
  ],
  "jobs": {
    "include": [
      {
        "rvm": "2.3",
        "before_script": [
          "gem install faraday -v 1.0.1"
        ]
      },
      {
        "os": "osx",
        "rvm": "2.5"
      },
      {
        "os": "osx",
        "rvm": "2.6"
      },
      {
        "stage": "deploy",
        "if": "repo = travis-ci/travis.rb and branch = master and type = push",
        "os": "linux",
        "rvm": "2.6",
        "deploy": [
          {
            "provider": "rubygems",
            "api_key": {
              "secure": "KcBpkFaes74KGMm8X/rRA8e13+t3PmkefsAvOAR+iF4g1GyuLSPkP92Fb9vFfsXBph+qmFh5rNa2lIRf/3RXW6COxY7CMMaARxUfJOKE0rmIwF0qfKI+RZDh6abg92iYngunMZVN8WVft6Lv9ZTOYCWxr1Zs1Ll/Rl4PfvHNd1g="
            },
            "gem": "travis",
            "edge": true
          }
        ]
      }
    ]
  },
  "script": [
    "bundle exec rake",
    "gem build travis.gemspec",
    "gem install travis-*.gem"
  ],
  "before_install": [
    "gem install rubygems-update -v 3.4.22"
  ]
}