You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 7, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: content/en/user-guide/aws/codebuild/index.md
+3-7Lines changed: 3 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ tags: ["Pro image"]
8
8
9
9
## Introduction
10
10
11
-
AWS CodeBuild is a fully managed continuous integration service that compiles source code, runs tests, and produces software packages that are ready to deploy.
11
+
AWS CodeBuild is a fully managed continuous integration service that compiles source code, runs tests, and produces software packages that are ready to deploy.
12
12
It's part of the AWS Developer Tools suite and integrates with other AWS services to provide an end-to-end development pipeline.
13
13
14
14
LocalStack supports the emulation of most of the CodeBuild operations.
@@ -78,10 +78,10 @@ public class TestMessageUtil {
78
78
79
79
String message ="Robert";
80
80
MessageUtil messageUtil =newMessageUtil(message);
81
-
81
+
82
82
@Test
83
83
publicvoidtestPrintMessage() {
84
-
System.out.println("Inside testPrintMessage()");
84
+
System.out.println("Inside testPrintMessage()");
85
85
assertEquals(message,messageUtil.printMessage());
86
86
}
87
87
@@ -160,12 +160,8 @@ artifacts:
160
160
- target/messageUtil-1.0.jar
161
161
```
162
162
163
-
164
-
165
-
166
163
## Limitations
167
164
168
165
- CodeBuild currently only supports S3 as a code source. You can use AWS CodePipeline to integrate CodeBuild with a source code repository provider via CodeStarSourceConnection.
0 commit comments