FoundKey/.travis.yml

43 lines
589 B
YAML
Raw Normal View History

2017-01-18 05:56:47 +00:00
# travis file
# https://docs.travis-ci.com/user/customizing-the-build
2017-12-28 00:49:30 +00:00
notifications:
email: false
2018-05-21 11:36:14 +00:00
branches:
except:
- l10n_master
2016-12-28 22:49:51 +00:00
language: node_js
2017-01-18 05:56:47 +00:00
2016-12-28 22:49:51 +00:00
node_js:
2018-05-17 21:40:15 +00:00
- 10.1.0
2017-01-18 05:56:47 +00:00
2017-02-28 11:41:16 +00:00
env:
- CXX=g++-4.8 NODE_ENV=production
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- graphicsmagick
cache:
directories:
2018-05-17 21:40:15 +00:00
- node_modules
2017-02-28 11:41:16 +00:00
2017-01-04 06:23:16 +00:00
services:
- mongodb
- redis-server
2017-01-18 05:56:47 +00:00
2016-12-28 22:49:51 +00:00
before_script:
2018-05-17 21:40:38 +00:00
- npm install
2017-05-24 00:37:26 +00:00
2018-03-29 07:35:29 +00:00
# 設定ファイルを配置
2017-02-28 11:44:03 +00:00
- cp ./.travis/default.yml ./.config
- cp ./.travis/test.yml ./.config
2017-05-24 05:16:17 +00:00
2018-03-15 05:36:31 +00:00
- travis_wait npm run build