forked from ManageIQ/manageiq-ui-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (44 loc) · 909 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
---
dist: xenial
language: ruby
python: '2.7'
rvm:
- 2.5.7
- 2.6.5
cache:
bundler: true
yarn: true
timeout: 600
addons:
postgresql: '10'
chrome: beta
env:
matrix:
- TEST_SUITE=spec
- TEST_SUITE=spec:javascript
- TEST_SUITE=spec:compile
- TEST_SUITE=spec:jest
- TEST_SUITE=spec:debride
matrix:
exclude:
- rvm: 2.5.7
env: TEST_SUITE=spec:javascript
- rvm: 2.5.7
env: TEST_SUITE=spec:compile
- rvm: 2.5.7
env: TEST_SUITE=spec:jest
- rvm: 2.5.7
env: TEST_SUITE=spec:debride
bundler_args: "--no-deployment"
before_install: source tools/ci/before_install.sh
install: bin/setup
before_script: source tools/ci/before_script.sh
script: bundle exec rake $TEST_SUITE
after_script: source tools/ci/after_script.sh
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/9a9f972a1225d28e0f05
on_success: change
on_failure: always
on_start: never