-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.yml
116 lines (107 loc) · 2.65 KB
/
config.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
defaults: &defaults
docker:
- image: circleci/node:6-browsers
environment:
JOBS: 2
working_directory: ~/ember-octicons
version: 2
jobs:
checkout_code:
<<: *defaults
steps:
- checkout
- persist_to_workspace:
root: .
paths:
- .
install_dependencies:
<<: *defaults
steps:
- attach_workspace:
at: .
- run:
name: Yarn Install
command: yarn install --non-interactive --no-lockfile
- persist_to_workspace:
root: .
paths:
- .
lint_js:
<<: *defaults
steps:
- attach_workspace:
at: .
- run:
name: Lint JS
command: yarn run lint:js
test_default:
<<: *defaults
steps:
- attach_workspace:
at: .
- run: echo 'export PATH=~/ember-octicons/node_modules/.bin:$PATH' >> $BASH_ENV
- run:
name: Run Tests
command: ember test
test_lts_2_12:
<<: *defaults
steps:
- attach_workspace:
at: .
- run: echo 'export PATH=~/ember-octicons/node_modules/.bin:$PATH' >> $BASH_ENV
- run:
name: Run Tests
command: ember try:one ember-lts-2.12 --skip-cleanup=true
test_lts_2_16:
<<: *defaults
steps:
- attach_workspace:
at: .
- run: echo 'export PATH=~/ember-octicons/node_modules/.bin:$PATH' >> $BASH_ENV
- run:
name: Run Tests
command: ember try:one ember-lts-2.16 --skip-cleanup=true
test_release:
<<: *defaults
steps:
- attach_workspace:
at: .
- run: echo 'export PATH=~/ember-octicons/node_modules/.bin:$PATH' >> $BASH_ENV
- run:
name: Run Tests
command: ember try:one ember-release --skip-cleanup=true
test_beta:
<<: *defaults
steps:
- attach_workspace:
at: .
- run: echo 'export PATH=~/ember-octicons/node_modules/.bin:$PATH' >> $BASH_ENV
- run:
name: Run Tests
command: ember try:one ember-beta --skip-cleanup=true
workflows:
version: 2
test_matrix:
jobs:
- checkout_code
- install_dependencies:
requires:
- checkout_code
- lint_js:
requires:
- install_dependencies
- test_default:
requires:
- install_dependencies
- test_lts_2_12:
requires:
- install_dependencies
- test_lts_2_16:
requires:
- install_dependencies
- test_release:
requires:
- install_dependencies
- test_beta:
requires:
- install_dependencies