Merge branch 'master' of https://github.com/syuilo/misskey
This commit is contained in:
commit
6af69bf136
48
.travis.yml
48
.travis.yml
|
@ -6,30 +6,6 @@ language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- "7.6.0"
|
- "7.6.0"
|
||||||
|
|
||||||
services:
|
|
||||||
- mongodb
|
|
||||||
- redis-server
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- mkdir ./.config
|
|
||||||
- cp ./.ci-files/default.yml ./.config
|
|
||||||
- cp ./.ci-files/test.yml ./.config
|
|
||||||
- npm run build
|
|
||||||
|
|
||||||
after_success:
|
|
||||||
- openssl aes-256-cbc -K $encrypted_ceda82069128_key -iv $encrypted_ceda82069128_iv -in .travis_rsa.enc -out .travis_rsa -d
|
|
||||||
- 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
|
|
||||||
- git rm --cached `git ls-files --full-name -i --exclude-standard`
|
|
||||||
- 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
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- CXX=g++-4.8 NODE_ENV=production
|
- CXX=g++-4.8 NODE_ENV=production
|
||||||
|
|
||||||
|
@ -44,3 +20,27 @@ addons:
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- node_modules
|
- node_modules
|
||||||
|
|
||||||
|
services:
|
||||||
|
- mongodb
|
||||||
|
- redis-server
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- mkdir ./.config
|
||||||
|
- cp ./.travis/default.yml ./.config
|
||||||
|
- cp ./.travis/test.yml ./.config
|
||||||
|
- npm run build
|
||||||
|
|
||||||
|
after_success:
|
||||||
|
- 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
|
||||||
|
- chmod 600 ~/.ssh/id_rsa
|
||||||
|
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
|
||||||
|
- git checkout -b release
|
||||||
|
- cp -f ./.travis/.gitignore-release .gitignore
|
||||||
|
- git add --all
|
||||||
|
- git rm --cached `git ls-files --full-name -i --exclude-standard`
|
||||||
|
- 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" ] && [ $TRAVIS_PULL_REQUEST != "false" ]; then git push -f git@github.com:syuilo/misskey release; fi
|
||||||
|
|
Loading…
Reference in a new issue