Sha256: 6d24b9f133ff9a022db4a0679422448584536f180c4856df590ae457348c5dfb

Contents?: true

Size: 1.46 KB

Versions: 2

Compression:

Stored size: 1.46 KB

Contents

sudo: false
language: ruby

before_install:
- gem update --system 2.6.14
- gem --version
- gem install bundler -v $BUNDLE_VERSION
- bundle _${BUNDLE_VERSION}_ --version

install:
- bundle _${BUNDLE_VERSION}_ install --with "$GEMSETS" --binstubs

script:
- bundle exec ./bin/rake spec

jobs:
  include:
  - stage: test
    env:
    - BUNDLE_VERSION=1.16.1
    - GEMSETS=test
    rvm: jruby-19mode
  - stage: test
    rvm: 1.9.3
    env:
    - BUNDLE_VERSION=1.12.0
    - GEMSETS=test
  - stage: test
    rvm: 2.0.0
    env:
    - BUNDLE_VERSION=1.12.0
    - GEMSETS=test
  - stage: test
    rvm: 2.1.
    env:
    - BUNDLE_VERSION=1.12.0
    - GEMSETS=test
  - stage: test
    env:
    - BUNDLE_VERSION=1.12.0
    - GEMSETS="test sidekiq"
    rvm: 2.2.4
  - stage: test
    env:
    - BUNDLE_VERSION=1.12.0
    - GEMSETS="test sidekiq coverage"
    rvm: 2.3.0
  - stage: test
    env:
    - BUNDLE_VERSION=1.12.0
    - GEMSETS="test sidekiq"
    rvm: 2.4.1
  - stage: test
    env:
    - BUNDLE_VERSION=1.12.0
    - GEMSETS="test rubocop"
    rvm: 2.4.1
    script: bundle exec ./bin/rubocop lib/
  - stage: deploy
    env:
    - BUNDLE_VERSION=1.12.0
    - GEMSETS="test doc"
    rvm: 2.4.1
    script: bundle exec rake rdoc
    if: tag =~ ^v[1-9]

deploy:
  provider: pages
  local_dir: rdoc # only include the contents of the generated docs dir
  skip_cleanup: true
  github_token: $GITHUB_TOKEN # set in travis-ci dashboard
  on:
    tags: true # only deploy when tag is applied to commit

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bugsnag-6.7.0 .travis.yml
bugsnag-6.6.4 .travis.yml