Build Stage

The Build Stage is where your Serverless application gets built and packaged by SAM. We are going to use AWS CodeBuild as the Build provider for our pipeline. It is worth mentioning that CodePipeline also supports other providers like Jenkins, TeamCity, or CloudBees.

Why AWS CodeBuild?

AWS CodeBuild is a great option because you only pay for the time where your build is running, which makes it very cost effective compared to running a dedicated build server 24 hours a day when you really only build during office hours. It is also container-based which means that you can bring your own Docker container image where your build runs, or use a managed image provided by CodeBuild.

Add the build stage

Let’s go ahead and add a Build stage to your pipeline_stack.py:

        # Declare build output as artifacts
        build_output = codepipeline.Artifact()
        
        # Declare a new CodeBuild project
        build_project = codebuild.PipelineProject(self, "Build", 
            environment = codebuild.BuildEnvironment(
                build_image = codebuild.LinuxBuildImage.STANDARD_5_0,
            ),
            environment_variables = {
                'PACKAGE_BUCKET': codebuild.BuildEnvironmentVariable(value = artifacts_bucket.bucket_name),
            },
        )
        
        # Add the build stage to our pipeline
        pipeline.add_stage(
            stage_name = "Build", 
            actions = [
                codepipeline_actions.CodeBuildAction(
                    action_name = "Build",
                    project = build_project,
                    input = source_output,
                    outputs = [build_output],
                )
            ]
        )
Click here to see how the entire file should look like

Deploy the pipeline

From your terminal, run the following command to deploy the pipeline and confirm the “Do you wish to deploy these changes (y/n)?” prompt by selecting y.

cdk deploy

Verify pipeline creation

Navigate to the AWS CodePipeline Console and click on your newly created pipeline!

VerifyPipeline

The execution should have failed. Don’t worry! this is expected because we haven’t specified what commands to run during the build yet, so AWS CodeBuild doesn’t know how to build our Serverless application.

Let’s fix that.