-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildspec.yml
70 lines (34 loc) · 833 Bytes
/
buildspec.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
version: 0.2
env:
batch:
compute-type: BUILD_GENERAL1_SMALL
image: aws/codebuild/standard:5.0
timeout: 300
privileged-mode: true
batch:
fast-fail: false
build-list:
- identifier: build1
env:
compute-type: BUILD_GENERAL1_SMALL
variables:
MY_VAR: "value1"
buildspec: buildspec1.yml
- identifier: build2
env:
compute-type: BUILD_GENERAL1_MEDIUM
variables:
MY_VAR: "value2"
buildspec: buildspec2.yml
- identifier: build3
env:
compute-type: BUILD_GENERAL1_LARGE
variables:
MY_VAR: "value3"
buildspec: buildspec3.yml
reports:
report-group-code-coverage-report:
files:
- '**/*coverage*'
base-directory: 'tmp'
discard-paths: false