File: .travis.yml

package info (click to toggle)
ruby-color 1.8-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 356 kB
  • sloc: ruby: 2,902; makefile: 5
file content (41 lines) | stat: -rw-r--r-- 626 bytes parent folder | download | duplicates (4)
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
---
language: ruby
rvm:
  - 2.2.3
  - 2.1.7
  - 2.0.0-p647
  - ruby-head
  - jruby-9.0
  - jruby-head
  - rbx-2
  - jruby-19mode
  - 1.9.3
  - 1.8.7
  - jruby-18mode
  - ree
matrix:
  allow_failures:
    - rvm: 1.9.3
    - rvm: rbx-2
    - rvm: jruby-head
    - rvm: ruby-head
gemfile:
  - Gemfile
before_script:
  - |
    case "${TRAVIS_RUBY_VERSION}" in
      rbx*)
        gem install psych
        ;;
    esac
  - rake travis:before -t
script: rake travis
after_script:
  - rake travis:after -t
notifications:
  email:
    recipients:
      - halostatue@gmail.com
    on_success: change
    on_failure: always
sudo: false