forked from ranguba/groonga-client-model
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (29 loc) · 790 Bytes
/
Copy path.travis.yml
File metadata and controls
29 lines (29 loc) · 790 Bytes
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
notifications:
email:
recipients:
- groonga-commit@lists.sourceforge.jp
rvm:
- 2.2
- 2.3.3
- 2.4.0
before_install:
- curl --silent --location https://github.com/groonga/groonga/raw/master/data/travis/setup.sh | sh
- sudo apt-get -qq -y install groonga-bin
- gem update bundler
- git clone --depth 1 https://github.com/ranguba/groonga-client.git ../groonga-client
install:
- bundle install --jobs=3 --retry=3
- |
for test_app in ${PWD}/test/apps/*
do
(cd ${test_app} && \
BUNDLE_GEMFILE=${PWD}/Gemfile bundle install --jobs=3 --retry=3)
done
script:
- bundle exec ruby test/unit/run-test.rb
- |
for test_app in ${PWD}/test/apps/*
do
(cd ${test_app} && \
BUNDLE_GEMFILE=${PWD}/Gemfile bin/rails test)
done