-
Notifications
You must be signed in to change notification settings - Fork 65
/
buildspec.yml
49 lines (48 loc) · 1.42 KB
/
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
version: 0.2
batch:
fast-fail: false
build-list:
- identifier: testNodejs20
buildspec: codebuild/nodejs20.yml
env:
image: aws/codebuild/standard:5.0
- identifier: testNodejs18
buildspec: codebuild/nodejs18.yml
env:
image: aws/codebuild/standard:5.0
- identifier: testNodejs16
buildspec: codebuild/nodejs16.yml
env:
image: aws/codebuild/standard:5.0
- identifier: testBrowser18
buildspec: codebuild/browser18.yml
env:
image: aws/codebuild/standard:5.0
- identifier: compliance
buildspec: codebuild/compliance.yml
env:
image: aws/codebuild/standard:5.0
- identifier: testVectorsNodejs16
buildspec: codebuild/test_vectors/nodejs16.yml
env:
variables:
PUBLISH_LOCAL: "true"
image: aws/codebuild/standard:5.0
- identifier: testVectorsNodejs18
buildspec: codebuild/test_vectors/nodejs18.yml
env:
variables:
PUBLISH_LOCAL: "true"
image: aws/codebuild/standard:5.0
- identifier: testVectorsNodejs20
buildspec: codebuild/test_vectors/nodejs20.yml
env:
variables:
PUBLISH_LOCAL: "true"
image: aws/codebuild/standard:5.0
- identifier: testVectorsBrowser18
buildspec: codebuild/test_vectors/browser18.yml
env:
variables:
PUBLISH_LOCAL: "true"
image: aws/codebuild/standard:5.0