-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstaging.js
More file actions
53 lines (53 loc) · 1.59 KB
/
staging.js
File metadata and controls
53 lines (53 loc) · 1.59 KB
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
module.exports = {
env: 'staging',
addonBucketName: 'canary-addons.ember-twiddle.com',
schedulerSqsQueueUrl: 'https://sqs.us-east-1.amazonaws.com/620471542343/addon-builds-canary',
schedulerLambdaFunctionname: 'addon-build-scheduler-canary',
schedulerRole: 'arn:aws:lambda:us-east-1:620471542343:function:addon-build-scheduler-canary',
builderRole: 'arn:aws:iam::620471542343:role/addon-builder-role-canary',
builderClusterName: 'ember-twiddle',
builderTaskDefinition: 'addon-builder-staging',
builderEmberVersions: {
'1.13.13': /1\.13\./,
'2.0.0': /2\.0\.0/,
'2.0.3': /2\.0\./,
'2.1.0': /2\.1\./,
'2.2.0': /2\.2\./,
'2.3.0': /2\.3\./,
'2.4.0': /2\.4\./,
'2.5.0': /2\.5\./,
'2.6.0': /2\.6\./,
'2.7.0': /2\.7\./,
'2.8.0': /2\.8\./,
'2.9.0': /2\.9\./,
'2.10.0': /2\.10\.0/,
'2.10.1': /2\.10\./,
'2.11.0': /2\.11\./,
'2.12.0': /2\.12\./,
'2.13.0': /2\.13\./,
'2.14.1': /2\.14\./,
'2.15.3': /2\.15\./,
'2.16.0': /2\.16\./,
'2.17.0': /2\.17\./,
'2.18.0': /2\.18\./,
'3.0.0': /3\.0\./,
'3.1.0': /3\.1\./,
'3.2.0': /3\.2\./,
'3.3.0': /3\.3\./,
'3.4.0': /3\.4\./,
'3.5.0': /3\.5\./,
'3.6.0': /3\.6\./,
'3.7.0': /3\.7\./,
'3.8.0': /3\.8\./,
'3.9.0': /3\.9\./,
'3.10.0': /3\.10\./,
'3.11.0': /3\.11\./,
'3.12.0': /3\.12\./,
'3.13.0': /3\.13\./,
'3.14.0': /3\.14\./,
'3.15.0': /3\.15\./,
'3.16.0': /3\.16\./,
'3.17.0': /3\.17\./,
'3.18.0': /3\.18\./,
}
};