-
Notifications
You must be signed in to change notification settings - Fork 439
/
.travis.yml
85 lines (70 loc) · 1.95 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
language: node_js
node_js:
- "10"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
yarn: true
env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1
install:
- yarn install --no-lockfile --non-interactive
notifications:
email: false
# Identifies `a.b.c-xxx.n` tags as pre-releases, and `a.b.c` as stable releases
before_deploy: |
function npm_dist_tag() {
if [[ "$TRAVIS_TAG" = *"-"* ]]; then
echo "next"
else
echo "latest"
fi
}
jobs:
fail_fast: true
include:
- stage: locked dependencies
env: NAME=browser tests
install: yarn install
script: yarn test:browser
- env: NAME=node tests
install: yarn install
script: yarn test:test-projects
- stage: floating dependencies
env: NAME=browser tests
script: yarn test:browser
- env: NAME=node tests
script: yarn test:test-projects
- stage: versioned tests
env: EMBER_TRY_SCENARIO=ember-lts-3.20
- env: EMBER_TRY_SCENARIO=ember-release
- env: EMBER_TRY_SCENARIO=ember-beta
- env: EMBER_TRY_SCENARIO=ember-canary
- env: EMBER_TRY_SCENARIO=ember-default
- env: EMBER_TRY_SCENARIO=ember-default-with-jquery
- stage: deploy
if: (branch = master OR tag IS present) AND type = push
env: NAME=deploy
script: node_modules/.bin/ember deploy production
- stage: npm release
install: skip
script: skip
deploy:
provider: npm
tag: $(npm_dist_tag)
email: [email protected]
api_key:
secure: O6cP0nTiCbA+MuD6hRKdyyd6DWTFR/dc9klB10zXTnrwajjzLmenvvshPUv+F6lHCpb2SfrWW6cpFjZ61BPwKaaalF9u8encNkGlDYGtO77sWJu6LuJFeWPZnAC9rdAw4hPjz+gqTL+leeDMHzjB32VRqy2cpwFzet3e+W2eUuk=
on:
tags: true
repo: miragejs/ember-cli-mirage
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-beta
- env: EMBER_TRY_SCENARIO=ember-canary
script:
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO