misskey/.travis.yml

48 lines
1.2 KiB
YAML
Raw Normal View History

2017-01-17 21:56:47 -08:00
# travis file
# https://docs.travis-ci.com/user/customizing-the-build
2016-12-28 14:49:51 -08:00
language: node_js
2017-01-17 21:56:47 -08:00
2016-12-28 14:49:51 -08:00
node_js:
2017-02-22 13:19:49 -08:00
- "7.6.0"
2017-01-17 21:56:47 -08:00
2017-01-03 22:23:16 -08:00
services:
- mongodb
- redis-server
2017-01-17 21:56:47 -08:00
2016-12-28 14:49:51 -08:00
before_script:
2017-01-17 22:15:22 -08:00
- mkdir ./.config
- cp ./.ci-files/default.yml ./.config
- cp ./.ci-files/test.yml ./.config
2017-02-27 07:36:11 -08:00
- npm run build
2017-01-17 21:56:47 -08:00
2017-02-27 06:32:14 -08:00
after_success:
2017-02-27 06:47:26 -08:00
- openssl aes-256-cbc -K $encrypted_ceda82069128_key -iv $encrypted_ceda82069128_iv -in .travis_rsa.enc -out .travis_rsa -d
2017-02-27 06:32:14 -08:00
- cp .travis_rsa ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git checkout -b release
- cp -f .gitignore-release .gitignore
- git add --all
2017-02-27 07:04:27 -08:00
- git rm --cached `git ls-files --full-name -i --exclude-standard`
2017-02-27 06:32:14 -08:00
- git config --global user.email "AyaMorisawa4869@gmail.com"
- git config --global user.name "Aya Morisawa"
- git commit -m "Release build for $TRAVIS_COMMIT"
- if [ $TRAVIS_BRANCH = "master" ]; then git push -f git@github.com:syuilo/misskey release; fi
2016-12-28 17:44:50 -08:00
env:
- CXX=g++-4.8
2017-02-27 07:42:52 -08:00
- NODE_ENV=production
2017-01-17 21:56:47 -08:00
2016-12-28 17:44:50 -08:00
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
2017-02-20 12:34:32 -08:00
- graphicsmagick
2017-01-17 21:56:47 -08:00
2016-12-28 14:49:51 -08:00
cache:
directories:
- node_modules