Getting Commit ID in CodePipeline
V

5

15

I am using CodePipeline with CodeCommit. Builds are triggered automatically with push to master branch. In CodePipeline console it is clearly visible that i am receiving commit id but i need to get it in the build environment so i can add them as a tag to the ECS image when i build it. Is there a way to get in in build environment. This is the id i am looking for

Virginavirginal answered 13/11, 2017 at 12:51 Comment(0)
E
19

You can use the CODEBUILD_RESOLVED_SOURCE_VERSION environment variable to retrieve the commit hash displayed in CodePipeline at build time.

Etheleneethelin answered 15/11, 2017 at 5:24 Comment(4)
CODEBUILD_RESOLVED_SOURCE_VERSION is the commit sha.Robson
I had assumed this variable was only available when codebuild pulls the source itself. However even if it's source is CODEPIPELINE, this variable still works.Geoponics
Alas only for the primary source, however.Delija
@Etheleneethelin that's a S3 version identifier, not the corresponding git commit sha.Delija
I
9

Adding an answer that explains how to achieve this in CloudFormation, as it took me a while to figure it out. You need to define your stage as:

Name: MyStageName
Actions:
    -
        Name: StageName
        InputArtifacts:
            - Name: InputArtifact
        ActionTypeId:
            Category: Build
            Owner: AWS
            Version: '1'
            Provider: CodeBuild
        OutputArtifacts:
            - Name: OutputArtifact
        Configuration:
            ProjectName: !Ref MyBuildProject
            EnvironmentVariables:
                '[{"name":"COMMIT_ID","value":"#{SourceVariables.CommitId}","type":"PLAINTEXT"}]'

In your actions you need to have this kind of syntax. Note that the EnvironmentVariables property of a CodePipeline stage is different from a AWS::CodeBuild::Project property. If you were to add #{SourceVariables.CommitId} as an env variable there, it wouldn't be resolved properly.

Irrefragable answered 20/10, 2020 at 5:12 Comment(1)
Thanks for pointing the AWS::CodeBuild::Project vs AWS::CodePipeline::Action distinction, that was very helpful!Baywood
C
5

CodePipeline now also allows you to configure your pipeline with variables that are generated at execution time. In this example your CodeCommit action will produce a variable called CommitId that you can pass into a CodeBuild environment variable via the CodeBuild action configuration.

Here is a conceptual overview of the feature: https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-variables.html

For an example walk through of passing the commit id into your build action you can go here: https://docs.aws.amazon.com/codepipeline/latest/userguide/actions-variables.html

It would also be worth considering tagging the image with the CodePipeline execution id instead of the commit id, that way it prevents future builds with the same commit from overwriting the image. Using the CodePipeline execution id is also shown in the example above.

Conti answered 18/12, 2019 at 14:57 Comment(0)
B
5

Additionally to @Bar's answer: just adding EnvironmentVariables is not enough, you need to set Namespace also.

For example:

      pipeBackEnd:
        Type: AWS::CodePipeline::Pipeline
        Properties:
          ...
          Stages:
            - Name: GitSource
              Actions:
                - Name: CodeSource
                  ActionTypeId:
                    Category: Source
                    ...
                  Configuration: (...)
                  Namespace: SourceVariables  # <<< === HERE, in Source
            - Name: Deploy
              Actions:
                - Name: BackEnd-Deploy
                  ActionTypeId:
                    Category: Build
                    Provider: CodeBuild (...)
                  Configuration:
                    ProjectName: !Ref CodeBuildBackEnd
                    EnvironmentVariables: '[{"name":"BranchName","value":"#{SourceVariables.BranchName}","type":"PLAINTEXT"},{"name":"CommitMessage","value":"#{SourceVariables.CommitMessage}","type":"PLAINTEXT"}]'

Also, it may be useful: list of CodePipeline variables

Barbarossa answered 6/8, 2021 at 14:16 Comment(0)
G
4

Is View Current Source Revision Details in a Pipeline (CLI) what you're looking for?

Most (if not all) of the language SDKs natively support this GetPipelineExecution API too.

Glossographer answered 13/11, 2017 at 15:40 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.