forked from transifex/txgh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
35 lines (31 loc) · 894 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
txgh: &txgh
before_install: gem install bundler -v 1.17.3
install: cd txgh; bundle install --no-deployment --jobs 3 --retry 3; cd ..
script: cd txgh && bundle exec rspec && cd ..
env: NAME=txgh
server: &server
before_install: gem install bundler -v 1.17.3
install: cd server; bundle install --no-deployment --jobs 3 --retry 3; cd ..
script: cd server && bundle exec rake spec:full && cd ..
env: NAME=txgh-server
queue: &queue
before_install: gem install bundler -v 1.17.3
install: cd queue; bundle install --no-deployment --jobs 3 --retry 3; cd ..
script: cd queue && bundle exec rspec && cd ..
env: NAME=txgh-queue
sudo: false
language: ruby
matrix:
include:
- rvm: 2.5.3
<<: *txgh
- rvm: 2.5.3
<<: *server
- rvm: 2.5.3
<<: *queue
- rvm: 2.6.0
<<: *txgh
- rvm: 2.6.0
<<: *server
- rvm: 2.6.0
<<: *queue