-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
35 lines (34 loc) · 1.26 KB
/
.travis.yml
File metadata and controls
35 lines (34 loc) · 1.26 KB
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
language: ruby
cache: bundler
before_install:
- sed -i '2d' Gemfile
rvm:
- 2.1.5
bundler_args: "--without production"
services:
- redis-server
gemfile:
- Gemfile
before_script:
- psql -c 'create database dropblog_test;' -U postgres
- psql -U postgres -q -d dropblog_test -f db/structure.sql
- cp config/database.travis.yml config/database.yml
script: bundle exec rake
addons:
code_climate:
repo_token: 232cbe99dfd802bf915eac4bc660c511cba71551f94df8541bd6f25a5f8fca24
notifications:
email: false
env:
global:
- secure: gTCOVqHYS1L6j6rq7Gmrm9EuCaBRM2X7MGHba3lpqj1oRZHO/YkFxToDSTPR57BF7N3SJfLLyU2cF90OW2p5JZmSfbsgyIKkNiY2YaZFVHkbaHc02c9W4fuTG2PqB23j3KeCrDYi7JNGayRnTIV99dizTeDJqkwuTc1ywMCqbhw=
- secure: trKrdt+PVZfzjiKgOjUsrbP7eImjK/Zgx8EOXa+3k40MAFolIWFHAqrY6/iFtu4E3UV1TjMM2kGXnCr2X5nryufx/0VHJ1kAXj/C1DTXs6jBmq7jOSaWHAsAzl9+EIjyV8hAD/ZQRvlI8VzfdQvXSFgpLWWejKxb4R48WCgE7Gw=
- DROPBOX_BLOG_ROOT=dropblog-test
# deploy:
# provider: heroku
# api_key:
# secure: 1aWBH2CJ9cSCapxJpqUzkoVisQcVjlCq6hA7sEFWJ8C0ZZplJ0v2CBBjxEZHACdjFAwdkq4zYxmp6jPkidwACCK+MwC8fWO2W4qnvtzOg4MRrMCVSPiYOLYlEEW5LUHFkOkTOQ+wDccQxfd6KuPt24xP+pSeGaltJSjk7gZ0J9g=
# app: neverstopbuilding-dropblog
# on:
# repo: neverstopbuilding/dropblog
# run: "rake db:migrate"