File: .travis.yml

package info (click to toggle)
ruby-health-check 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 256 kB
  • sloc: sh: 1,021; ruby: 596; makefile: 3
file content (79 lines) | stat: -rw-r--r-- 1,661 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
sudo: false
addons:
  apt:
    packages:
    - net-tools

cache: bundler
language: ruby
notifications:
  email:
    on_success: change
    on_failure: always

before_install:
  - gem update --system $RUBYGEMS_VERSION
  - gem --version
  - gem install bundler ${BUNDLER_VERSION:+-v} ${BUNDLER_VERSION}
  - gem install smarter_bundler
  - bundle --version
  - mkdir -p tmp/bundle

bundler_args: "--binstubs"

script: ./test/test_with_railsapp

matrix:
  fast_finish: true

  include:
    # -------------------------------------
    # Standard
    
    # ruby 5.0  Jun. 2016
    
    - rvm: 2.2.2
      gemfile: test/rails_5.0.gemfile
      env: RAILS_VERSION=5.0 MIDDLEWARE=no

    - rvm: 2.3.6
      gemfile: test/rails_5.0.gemfile
      env: RAILS_VERSION=5.0 MIDDLEWARE=no

    # rails 5.1 sometime before May 2017
    
    - rvm: 2.2.2
      gemfile: test/rails_5.1.gemfile
      env: RAILS_VERSION=5.1 MIDDLEWARE=no

    - rvm: 2.3.6
      gemfile: test/rails_5.1.gemfile
      env: RAILS_VERSION=5.1 MIDDLEWARE=no

    - rvm: 2.4.3
      gemfile: test/rails_5.1.gemfile
      env: RAILS_VERSION=5.1 MIDDLEWARE=no

    # -------------------------------------
    # Middleware
    
    # ruby 5.0  Jun. 2016
    
    - rvm: 2.2.2
      gemfile: test/rails_5.0.gemfile
      env: RAILS_VERSION=5.0 MIDDLEWARE=yes

    - rvm: 2.3.6
      gemfile: test/rails_5.0.gemfile
      env: RAILS_VERSION=5.0 MIDDLEWARE=yes

    # rails 5.1 sometime before May 2017
    
    - rvm: 2.2.2
      gemfile: test/rails_5.1.gemfile
      env: RAILS_VERSION=5.1 MIDDLEWARE=yes

    - rvm: 2.4.3
      gemfile: test/rails_5.1.gemfile
      env: RAILS_VERSION=5.1 MIDDLEWARE=yes