forked from travis-ci/travis-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
70 lines (57 loc) · 1.63 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
language: node_js
node_js: 8.5
env:
global:
- PERCY_ENABLE=0
sudo: required
dist: trusty
addons:
chrome: stable
cache:
directories:
- node_modules
- bower_components
env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1
before_install:
- npm config set spin false
- npm install -g npm@5
- npm install -g bower
- bower --version
- npm --version
- npm install -g greenkeeper-lockfile@1
install:
- npm install
- bower install
before_script:
- if [ $TRAVIS_PULL_REQUEST = 'false' ]; then echo "Enabling Percy on push with default Ember" && export PERCY_ENABLE=1; else export PERCY_ENABLE=0; fi
- echo $PERCY_ENABLE
- if [ "$PERCY_ENABLE" -ne 1 ]; then export RANDOMISE=--random; fi
- echo $RANDOMISE
- greenkeeper-lockfile-update
script:
- npm run lint:js
- ember exam --reporter dot $RANDOMISE
after_script:
- greenkeeper-lockfile-upload
before_deploy:
- ASSETS_HOST=https://s3.amazonaws.com/travis-error-pages ember build --env production
# delete some of the stuff that's useless for maintenance page
- rm -fr dist/assets/*.js dist/images/emoji dist/index.html dist/images/sponsors
- cp dist/maintenance.html dist/index.html
deploy:
- provider: s3
access_key_id: $MAINTENANCE_S3_ACCESS_KEY_ID
secret_access_key: $MAINTENANCE_S3_SECRET_ACCESS_KEY
bucket: travis-error-pages
skip_cleanup: true
acl: public_read
local_dir: dist
region: us-east-1
on:
branch: master
after_success:
- "test $TRAVIS_PULL_REQUEST && test $TRAVIS_PULL_REQUEST != 'false' && $TRAVIS_SECURE_ENV_VARS == 'true' && ./config/deployment/deploy-pull-request.sh"