mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
6f979c8275
* Update config.yml * Configure CI * Use Vesion 2.1 * Fix error * Ensure binary builds * Ensure misskey builds * Store artifacts * Ensure node-gyp builds * Fix typo * Fix typo * Ensure binary builds * Update working directory * Cache test npm packages * Revert "Update working directory" * Ensure misskey builds * Ensure node-gyp builds * Fix missing configurations * Configure deploy filters * Use latest npm in Docker
42 lines
558 B
YAML
42 lines
558 B
YAML
# travis file
|
|
# https://docs.travis-ci.com/user/customizing-the-build
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
branches:
|
|
except:
|
|
- l10n_master
|
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
- 11.0.0
|
|
|
|
env:
|
|
- CXX=g++-4.8 NODE_ENV=production
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
|
|
services:
|
|
- mongodb
|
|
- redis-server
|
|
|
|
before_script:
|
|
- npm install
|
|
|
|
# 設定ファイルを配置
|
|
- cp ./.ci/default.yml ./.config
|
|
- cp ./.ci/test.yml ./.config
|
|
|
|
- travis_wait npm run build
|