summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 8ffcf431936ff32659cb5a197dd301ed5a32936b (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
language: ruby
script: rake spec:travis
before_script: rake spec:travis:deps
notifications:
  email:
    - mail@arko.net
    - hone02@gmail.com
  irc:
    on_success: change
    on_failure: always
    channels:
      - "irc.freenode.org#bundler"
rvm:
  - 1.9.3
  - 1.9.2
  - 1.8.7
# Rubygems versions MUST be available as rake tasks
# see Rakefile:66 for the list of possible RGV values
env:
  # we need to know if changes to rubygems will break bundler on release
  - RGV=master
  # test the latest rubygems release with all of our supported rubies
  - RGV=v1.8.24
matrix:
  allow_failures:
    # we want to know how we're doing with head, but not fail the build
    - rvm: ruby-head
    # until the 2.0 rc, it's okay for failures to crop up
    - rvm: 2.0.0-preview2
    # 1.9.2 is simply too slow. it sometimes exceeds the 25m hard limit.
    - rvm: 1.9.2
  include:
    # riding the edge
    - rvm: ruby-head
      env: RGV=master
    # 2.0 release track
    - rvm: 2.0.0-preview2
      env: RGV=v2.0.0.preview2.2
    # Bundler 1.x supports Rubygems down to 1.5.3 on Ruby 1.9.3
    - rvm: 1.9.3
      env: RGV=v1.7.2
    - rvm: 1.9.3
      env: RGV=v1.6.2
    - rvm: 1.9.3
      env: RGV=v1.5.3
    # Bundler 1.x supports Rubygems down to 1.3.6 on Ruby 1.8.7
    - rvm: 1.8.7
      env: RGV=v1.7.2
    - rvm: 1.8.7
      env: RGV=v1.6.2
    - rvm: 1.8.7
      env: RGV=v1.5.3
    - rvm: 1.8.7
      env: RGV=v1.4.2
    - rvm: 1.8.7
      env: RGV=v1.3.7
    - rvm: 1.8.7
      env: RGV=v1.3.6