File: .travis.yml

package info (click to toggle)
ruby-fog-softlayer 0.3.17-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 980 kB
  • ctags: 973
  • sloc: ruby: 5,986; makefile: 2
file content (38 lines) | stat: -rw-r--r-- 796 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: ruby

script: bundle exec rake travis

matrix:
  fast_finish: true
  include:
    - rvm: 1.8.7
      gemfile: gemfiles/Gemfile-ruby-1.8.7
    - rvm: 1.9.3
      gemfile: Gemfile
    - rvm: 2.0.0
      gemfile: Gemfile
    - rvm: 2.1.0
      gemfile: Gemfile
    - rvm: 2.1.1
      gemfile: Gemfile
#      env: COVERAGE=true
    - rvm: 2.1.1
      gemfile: gemfiles/Gemfile-edge
    - rvm: jruby-18mode
      gemfile: gemfiles/Gemfile-ruby-1.8.7
    - rvm: jruby-19mode
      gemfile: Gemfile
    - rvm: jruby-head
      gemfile: Gemfile

  allow_failures:
    - rvm: 1.8.7
    - rvm: jruby-18mode
    - rvm: jruby-head

notifications:
  email:
    - matt.eldridge@us.ibm.com

before_install:
  - gem update --system #  todo: workaround for https://github.com/rubygems/rubygems/pull/763