@@ -10,16 +10,51 @@ machine:
1010 # Timezone
1111 timezone : America/Los_Angeles
1212
13- # Version of Ruby to use for tests
14- ruby :
15- version : 2.3.1
16-
1713# Dependencies
1814dependencies :
1915 override :
20- - sudo apt-get install realpath
16+ # Ruby 2.3.1
17+ - cd logging ; rvm-exec 2.3.1 bundle install; cd ..
18+ - cd bigquery ; rvm-exec 2.3.1 bundle install; cd ..
19+ - cd datastore; rvm-exec 2.3.1 bundle install; cd ..
20+ - cd language ; rvm-exec 2.3.1 bundle install; cd ..
21+ - cd pubsub ; rvm-exec 2.3.1 bundle install; cd ..
22+ - cd speech ; rvm-exec 2.3.1 bundle install; cd ..
23+ - cd storage ; rvm-exec 2.3.1 bundle install; cd ..
24+ - cd translate; rvm-exec 2.3.1 bundle install; cd ..
25+ - cd vision ; rvm-exec 2.3.1 bundle install; cd ..
26+ # Ruby 2.2.5
27+ - cd logging ; rvm-exec 2.2.5 bundle install; cd ..
28+ - cd bigquery ; rvm-exec 2.2.5 bundle install; cd ..
29+ - cd datastore; rvm-exec 2.2.5 bundle install; cd ..
30+ - cd language ; rvm-exec 2.2.5 bundle install; cd ..
31+ - cd pubsub ; rvm-exec 2.2.5 bundle install; cd ..
32+ - cd speech ; rvm-exec 2.2.5 bundle install; cd ..
33+ - cd storage ; rvm-exec 2.2.5 bundle install; cd ..
34+ - cd translate; rvm-exec 2.2.5 bundle install; cd ..
35+ - cd vision ; rvm-exec 2.2.5 bundle install; cd ..
2136
2237# Test
2338test :
2439 override :
25- - ./spec/run-all.sh
40+ # Ruby 2.3.1
41+ - cd logging ; rvm-exec 2.3.1 bundle exec rspec; cd ..
42+ - cd bigquery ; rvm-exec 2.3.1 bundle exec rspec; cd ..
43+ - cd datastore; rvm-exec 2.3.1 bundle exec rspec; cd ..
44+ - cd language ; rvm-exec 2.3.1 bundle exec rspec; cd ..
45+ - cd pubsub ; rvm-exec 2.3.1 bundle exec rspec; cd ..
46+ - cd speech ; rvm-exec 2.3.1 bundle exec rspec; cd ..
47+ - cd storage ; rvm-exec 2.3.1 bundle exec rspec; cd ..
48+ - cd translate; rvm-exec 2.3.1 bundle exec rspec; cd ..
49+ - cd vision ; rvm-exec 2.3.1 bundle exec rspec; cd ..
50+ # Ruby 2.2.5
51+ - cd logging ; rvm-exec 2.2.5 bundle exec rspec; cd ..
52+ - cd bigquery ; rvm-exec 2.2.5 bundle exec rspec; cd ..
53+ - cd datastore; rvm-exec 2.2.5 bundle exec rspec; cd ..
54+ - cd language ; rvm-exec 2.2.5 bundle exec rspec; cd ..
55+ - cd pubsub ; rvm-exec 2.2.5 bundle exec rspec; cd ..
56+ - cd speech ; rvm-exec 2.2.5 bundle exec rspec; cd ..
57+ - cd storage ; rvm-exec 2.2.5 bundle exec rspec; cd ..
58+ - cd translate; rvm-exec 2.2.5 bundle exec rspec; cd ..
59+ - cd vision ; rvm-exec 2.2.5 bundle exec rspec; cd ..
60+
0 commit comments