forked from travis-ci/travis-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
62 lines (50 loc) · 1.4 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
---
language: node_js
node_js: 10.7
env:
global:
- PERCY_ENABLE=0
matrix:
include:
- if: type = cron
node_js: 10.7
env: TRY_CONFIG=ember-beta
- if: type = cron
node_js: 10.7
env: TRY_CONFIG=ember-data-beta
- node_js: 10.7
allow_failures:
- env: TRY_CONFIG=ember-beta
- env: TRY_CONFIG=ember-data-beta
sudo: required
dist: trusty
addons:
chrome: stable
cache:
directories:
- node_modules
env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1
before_install:
- npm config set spin false
- npm install -g npm@6
- npm --version
- npm install -g greenkeeper-lockfile@1
install:
- npm 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:
- if [ -z "$TRY_CONFIG" ]; then npm run lint:js; fi
- if [ -z "$TRY_CONFIG" ]; then ember exam --reporter dot $RANDOMISE; fi
- if [[ ! -z "$TRY_CONFIG" ]]; then ember try:one $TRY_CONFIG --skip-cleanup; fi
after_script:
- greenkeeper-lockfile-upload
after_success:
- "test $TRAVIS_PULL_REQUEST && test $TRAVIS_PULL_REQUEST != 'false' && $TRAVIS_SECURE_ENV_VARS == 'true' && ./config/deployment/deploy-pull-request.sh"