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/codepipeline/index.md
+26-8Lines changed: 26 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,21 +11,39 @@ tags: ["Pro image"]
11
11
CodePipeline is a continuous integration/continuous delivery (CI/CD) service offered by AWS.
12
12
CodePipeline can be used to create automated pipelines that handle the build, test and deployment of software.
13
13
14
-
With LocalStack, you can ...
15
-
14
+
With LocalStack, you can create, manage and execute pipelines.
15
+
CodePipeline on LocalStack support a variety of actions that integrate with S3, CodeBuild and CodeConnections.
16
16
17
17
## Getting Started
18
18
19
19
20
+
20
21
## Actions
21
22
22
-
LocalStack supports following actions
23
+
CodePipeline on LocalStack supports the following actions:
24
+
25
+
### S3 Source
26
+
27
+
The [S3 Source](https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-S3.html) action is used to specify an S3 bucket object as input to the pipeline.
28
+
29
+
### S3 Deploy
30
+
31
+
The [S3 Deploy](https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-S3Deploy.html) action is used to upload artifacts to a given S3 bucket as the output of the pipeline.
32
+
33
+
### CodeConnections Source
34
+
35
+
The [CodeConnections Source](https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-CodestarConnectionSource.html) action is used to specify a VCS repo as the input to the pipeline.
36
+
37
+
Currently LocalStack supports integration with [GitHub](https://github.com/).
38
+
Please set the environment configuration option `CODEPIPELINE_GH_TOKEN` with the GitHub Personal Access Token to be able to fetch private repositories.
The [CodeBuild Source and Test](https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-CodeBuild.html) action can be used to start a CodeBuild container and run the given buildspec.
27
43
28
44
## Limitations
29
45
30
-
-[V2 pipeline types](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html) are not supported
31
-
-[Rollbacks and stage retries](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-stages.html) is not available
46
+
-[V2 pipeline types](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html) are not supported.
47
+
-[Rollbacks and stage retries](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-stages.html) are not available.
48
+
-[Triggers](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-triggers.html) are not implemented.
49
+
Pipelines are executed only when [CreatePipeline](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_CreatePipeline.html) and [StartPipelineExecution](https://docs.aws.amazon.com/codepipeline/latest/APIReference/API_StartPipelineExecution.html) are invoked.
0 commit comments