Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit cd5b479

Browse files
committed
trailing
1 parent 49189df commit cd5b479

File tree

1 file changed

+3
-7
lines changed
  • content/en/user-guide/aws/codebuild

1 file changed

+3
-7
lines changed

content/en/user-guide/aws/codebuild/index.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tags: ["Pro image"]
88

99
## Introduction
1010

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.
1212
It's part of the AWS Developer Tools suite and integrates with other AWS services to provide an end-to-end development pipeline.
1313

1414
LocalStack supports the emulation of most of the CodeBuild operations.
@@ -78,10 +78,10 @@ public class TestMessageUtil {
7878

7979
String message = "Robert";
8080
MessageUtil messageUtil = new MessageUtil(message);
81-
81+
8282
@Test
8383
public void testPrintMessage() {
84-
System.out.println("Inside testPrintMessage()");
84+
System.out.println("Inside testPrintMessage()");
8585
assertEquals(message,messageUtil.printMessage());
8686
}
8787

@@ -160,12 +160,8 @@ artifacts:
160160
- target/messageUtil-1.0.jar
161161
```
162162
163-
164-
165-
166163
## Limitations
167164
168165
- 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.
169166
- We only use one build
170167
- Talk to the host (pass via the host network)
171-

0 commit comments

Comments
 (0)