2017-02-26 21:24:53 +00:00
|
|
|
# Build status located at https://travis-ci.org/citra-emu/citra-web
|
|
|
|
|
|
|
|
language: node_js
|
|
|
|
|
2017-06-04 15:52:35 +00:00
|
|
|
node_js: "6"
|
|
|
|
|
2017-06-04 15:57:20 +00:00
|
|
|
cache:
|
|
|
|
yarn: true
|
|
|
|
directories:
|
|
|
|
- node_modules
|
2017-02-26 21:24:53 +00:00
|
|
|
|
|
|
|
before_script:
|
|
|
|
- echo '========== Importing wiki articles into hugo =========='
|
|
|
|
- cd ./scripts/wiki/
|
2017-06-04 15:52:35 +00:00
|
|
|
- yarn install
|
2017-02-26 21:24:53 +00:00
|
|
|
- node app.js
|
|
|
|
- cd $TRAVIS_BUILD_DIR
|
|
|
|
|
2017-06-01 22:20:27 +00:00
|
|
|
- echo '========== Importing games wiki articles into hugo =========='
|
|
|
|
- cd ./scripts/games/
|
2017-06-04 15:52:35 +00:00
|
|
|
- yarn install
|
2017-06-01 22:20:27 +00:00
|
|
|
- node app.js
|
|
|
|
- cd $TRAVIS_BUILD_DIR
|
|
|
|
|
2017-02-26 21:24:53 +00:00
|
|
|
- echo '========== Importing twitter tweets into hugo =========='
|
|
|
|
- cd ./scripts/twitter/
|
2017-06-04 15:52:35 +00:00
|
|
|
- yarn install
|
2017-02-26 21:24:53 +00:00
|
|
|
- node app.js
|
|
|
|
- cd $TRAVIS_BUILD_DIR
|
|
|
|
|
|
|
|
- echo '========== Installing gulp / hugo dependencies =========='
|
2017-06-04 15:52:35 +00:00
|
|
|
- yarn global add @alrra/travis-scripts
|
|
|
|
- yarn global add gulp
|
|
|
|
- yarn global add hugo-bin
|
2017-02-26 21:24:53 +00:00
|
|
|
- hugo version
|
|
|
|
|
|
|
|
- echo '========== Configuring Github Pages =========='
|
|
|
|
- git config --global user.email "citra+citrabotweb@citra-emu.org"
|
|
|
|
- git config --global user.name "CitraBotWeb"
|
2017-02-26 21:37:48 +00:00
|
|
|
- set-up-ssh --key "$encrypted_c7ee54b5843f_key" --iv "$encrypted_c7ee54b5843f_iv" --path-encrypted-key "bf215181b5140522137b3d4f6b73544a.enc"
|
2017-02-26 21:24:53 +00:00
|
|
|
|
|
|
|
- echo '========== Starting gulp deploy task =========='
|
|
|
|
- gulp deploy
|
|
|
|
- cd $TRAVIS_BUILD_DIR
|
|
|
|
|
|
|
|
env:
|
|
|
|
- HUGO_ENV=PRD
|
|
|
|
|
|
|
|
# set-up-ssh is provided by travis-scripts.
|
|
|
|
# Setting up the SSH key for Github is described here.
|
|
|
|
# https://github.com/alrra/travis-scripts/blob/master/doc/github-deploy-keys.md
|