forked from aws/aws-sam-cli-app-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildspec.yml
70 lines (68 loc) · 3.1 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
version: 0.2
# ____ _ _ ____ _ _ _
# | __ ) __ _| |_ ___| |__ | __ ) _ _(_| | __| |___ _ __ ___ ___
# | _ \ / _` | __/ __| '_ \ | _ \| | | | | |/ _` / __| '_ \ / _ \/ __|
# | |_) | (_| | || (__| | | | | |_) | |_| | | | (_| \__ | |_) | __| (__
# |____/ \__,_|\__\___|_| |_| |____/ \__,_|_|_|\__,_|___| .__/ \___|\___|
# |_|
# This file is the codebuild's main entry, which creates a batch run containing
# the following 15 runs defined in their own buildspec files.
# Default env:
# image: aws/codebuild/amazonlinux2-x86_64-standard:3.0
# compute-type: BUILD_GENERAL1_SMALL
# For other configuration options, see
# https://docs.aws.amazon.com/codebuild/latest/userguide/batch-build-buildspec.html
batch:
fast-fail: false
build-list:
- identifier: UnitTestNodejs10
buildspec: buildspecs/buildspec-unittest-nodejs-10.x.yml
- identifier: UnitTestNodejs12
buildspec: buildspecs/buildspec-unittest-nodejs-12.x.yml
- identifier: UnitTestNodejs14
buildspec: buildspecs/buildspec-unittest-nodejs-14.x.yml
env:
# node 14 only available in aws/codebuild/standard:5.0
# https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-available.html
image: aws/codebuild/standard:5.0
- identifier: UnitTestPython27
buildspec: buildspecs/buildspec-unittest-python2.7.yml
- identifier: UnitTestPython36
buildspec: buildspecs/buildspec-unittest-python3.6.yml
- identifier: UnitTestPython37
buildspec: buildspecs/buildspec-unittest-python3.7.yml
- identifier: UnitTestPython38
buildspec: buildspecs/buildspec-unittest-python3.8.yml
- identifier: UnitTestPython39
buildspec: buildspecs/buildspec-unittest-python3.9.yml
env:
image: aws/codebuild/standard:5.0
- identifier: UnitTestJava8
buildspec: buildspecs/buildspec-unittest-java8.yml
env:
# We want to test Java 8 non-al2, so here standard is used instead of default (AL2).
image: aws/codebuild/standard:5.0
- identifier: UnitTestJava8al2
buildspec: buildspecs/buildspec-unittest-java8-al2.yml
- identifier: UnitTestJava11
buildspec: buildspecs/buildspec-unittest-java11.yml
- identifier: UnitTestRuby25
buildspec: buildspecs/buildspec-unittest-ruby2.5.yml
- identifier: UnitTestRuby27
buildspec: buildspecs/buildspec-unittest-ruby2.7.yml
- identifier: BuildAndInvoke
buildspec: buildspecs/buildspec-build-invoke.yml
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: BuildAndInvokeImage
buildspec: buildspecs/buildspec-build-invoke-image.yml
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: CombinedDotNet5
buildspec: buildspecs/buildspec-dotnet5.0.yml
- identifier: CombinedDotNet31
buildspec: buildspecs/buildspec-dotnetcore3.1.yml
- identifier: CombinedDotNet21
buildspec: buildspecs/buildspec-dotnetcore2.1.yml
- identifier: CombinedGo1x
buildspec: buildspecs/buildspec-go1.x.yml