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