Merge pull request #877 from fsih/ymlUpdate

Update travis.yml to use jobs
This commit is contained in:
DD Liu 2019-08-06 17:34:18 -04:00 committed by GitHub
commit 8b68f9fa34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,11 @@
language: node_js language: node_js
node_js: node_js:
- 8 - 8
env:
global:
- NODE_ENV=production
matrix:
- NPM_SCRIPT="unit"
cache: cache:
directories: directories:
- node_modules - node_modules
@ -16,33 +21,45 @@ install:
- npm --production=false install - npm --production=false install
- npm --production=false update - npm --production=false update
- npm install --no-save canvas@1.6.11 - npm install --no-save canvas@1.6.11
before_deploy: script: npm run $NPM_SCRIPT
- npm --no-git-tag-version version 0.2.0-prerelease.$(date +%Y%m%d%H%M%S) jobs:
- git config --global user.email $(git log --pretty=format:"%ae" -n1) include:
- git config --global user.name $(git log --pretty=format:"%an" -n1) - env: NPM_SCRIPT=lint
deploy: - env: NPM_SCRIPT=build
- provider: script if: not (branch in (master, develop) and type != pull_request)
on: - stage: release
all_branches: true env: NPM_SCRIPT=build
condition: $TRAVIS_BRANCH != develop && $TRAVIS_EVENT_TYPE != cron before_deploy:
skip_cleanup: true - npm --no-git-tag-version version 0.2.0-prerelease.$(date +%Y%m%d%H%M%S)
script: npm run deploy -- -x -e $TRAVIS_BRANCH -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git - git config --global user.email $(git log --pretty=format:"%ae" -n1)
- provider: script - git config --global user.name $(git log --pretty=format:"%an" -n1)
on: deploy:
branch: develop - provider: script
condition: $TRAVIS_EVENT_TYPE != cron on:
skip_cleanup: true all_branches: true
script: npm run --silent deploy -- -x -a -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git condition: $TRAVIS_BRANCH != develop && $TRAVIS_EVENT_TYPE != cron
- provider: npm skip_cleanup: true
on: script: npm run deploy -- -x -e $TRAVIS_BRANCH -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
branch: develop - provider: script
condition: $TRAVIS_EVENT_TYPE != cron on:
skip_cleanup: true branch: develop
email: $NPM_EMAIL condition: $TRAVIS_EVENT_TYPE != cron
api_key: $NPM_TOKEN skip_cleanup: true
- provider: script script: npm run --silent deploy -- -x -a -r https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git
on: - provider: npm
branch: develop on:
condition: $TRAVIS_EVENT_TYPE == cron branch: develop
skip_cleanup: true condition: $TRAVIS_EVENT_TYPE != cron
script: npm run i18n:src && npm run i18n:push skip_cleanup: true
email: $NPM_EMAIL
api_key: $NPM_TOKEN
- provider: script
on:
branch: develop
condition: $TRAVIS_EVENT_TYPE == cron
skip_cleanup: true
script: npm run i18n:src && npm run i18n:push
stages:
- test
- name: release
if: branch in (master, develop) and type != pull_request