forked from ManageIQ/manageiq-ui-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (40 loc) · 892 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
language: ruby
rvm:
- 2.4.4
- 2.3.6
sudo: false
cache:
bundler: true
yarn: true
directories:
- vendor/assets/bower/bower_components
addons:
postgresql: '9.4'
env:
matrix:
- TEST_SUITE=spec
- TEST_SUITE=spec:javascript
- TEST_SUITE=spec:compile
- TEST_SUITE=spec:jest
matrix:
exclude:
- rvm: 2.4.4
env: TEST_SUITE=spec:javascript
- rvm: 2.4.4
env: TEST_SUITE=spec:compile
- rvm: 2.4.4
env: TEST_SUITE=spec:jest
bundler_args: "--no-deployment"
before_install: source tools/ci/before_install.sh
before_script: bundle exec rake $TEST_SUITE:setup
script: bundle exec rake $TEST_SUITE
before_cache:
- cp bower.json vendor/assets/bower/bower_components
after_script: source tools/ci/after_install.sh
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/9a9f972a1225d28e0f05
on_success: change
on_failure: always
on_start: never