-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
58 lines (52 loc) · 1.42 KB
/
.travis.yml
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
sudo: false
matrix:
include:
- language: ruby
cache: bundler
rvm: 2.5
before_install:
- gem update --system
- gem install bundler -v 2.0.1
- gem --version
install:
- bundle install --with development --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
- language: ruby
cache: bundler
rvm: 2.6
before_install:
- gem update --system
- gem install bundler -v 2.0.1
- gem --version
install:
- bundle install --with development --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
- language: ruby
cache: bundler
rvm: rbx-3
before_install:
- gem update --system
- gem install bundler -v 2.0.1
- gem --version
install:
- bundle install --with development --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
- language: ruby
cache: bundler
rvm: ruby-head
before_install:
- gem update --system
- gem install bundler -v 2.0.1
- gem --version
install:
- bundle install --with development --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
- language: node_js
cache: yarn
node_js: node
- language: node_js
cache: yarn
node_js: lts/*
allow_failures:
- language: ruby
rvm: ruby-head
- language: ruby
rvm: rbx-3
- language: ruby
rvm: 2.6