forked from ember-learn/ember-cli-addon-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
70 lines (56 loc) · 1.54 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:
- "6"
sudo: true
dist: trusty
addons:
chrome: stable
cache:
yarn: true
env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1
before_install:
# Locking to Yarn 1.0.2 to work around https://github.com/yarnpkg/yarn/issues/4612
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.0.2
- export PATH=$HOME/.yarn/bin:$PATH
install:
- yarn install
script:
- yarn lint:js
# We need to cleanup, since our deploy depends on the git repo's status
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO
notifications:
email: false
stages:
- locked dependencies
- floating dependencies
- versioned tests
- deploy
jobs:
fail_fast: true
include:
- stage: locked dependencies
env: NAME=browser tests
script: yarn test:browser
- env: NAME=node tests
script: yarn test:node
- stage: floating dependencies
env: NAME=browser tests
install: yarn install --no-lockfile --non-interactive
script: yarn test:browser
- env: NAME=node tests
install: yarn install --no-lockfile --non-interactive
script: yarn test:node
- stage: versioned tests
env: EMBER_TRY_SCENARIO=ember-lts-2.12
- env: EMBER_TRY_SCENARIO=ember-lts-2.16
- env: EMBER_TRY_SCENARIO=ember-release
- env: EMBER_TRY_SCENARIO=ember-beta
- env: EMBER_TRY_SCENARIO=ember-canary
- stage: deploy
if: (branch = master OR tag IS present) AND type = push
env: NAME=deploy
script: node_modules/.bin/ember deploy production