forked from travis-ci/dpl
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
48 lines (44 loc) · 790 Bytes
/
.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
language: ruby
dist: xenial
rvm:
- 2.2.7
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.2
- 2.7.2
cache:
- bundler
script:
- bundle exec rspec
jobs:
include:
- &job
stage: test runtime dependency installation
if: commit_message !~ /skip:test_dependencies/ AND env(SKIP_TEST_DEPENDENCIES) IS blank
cache: false
install:
- gem build dpl.gemspec
- gem install dpl-*.gem
- node --version
script:
- .travis/test_install
rvm: 2.2.7
- <<: *job
rvm: 2.3.8
- <<: *job
rvm: 2.4.5
- <<: *job
rvm: 2.5.3
- <<: *job
rvm: 2.6.2
- <<: *job
rvm: 2.7.2
- <<: *job
language: python
python: 2.7
- <<: *job
language: python
python: 3.6
allow_failures:
- rvm: 2.7.2