CDK codebuild project - put code in a subdirectory?

0
Shorn
asked 2 years ago263 views
1 Answer
1

Using the BuildSpec.yml file for AWS CodeBuild provides control of your files once they have been cloned from GitHub. Consider using Linux commands to manipulate the location of your code as you need in the appropriate section of the BuidSpec.yml file. For example, you can do the following:

    - mkdir -p ./NewLocationForCodeWData/NewCodeSubDirectory
    - mkdir -p ./NewLocationForCodeWData/NewDataSubDirectory
    - mv ./GitHubRepoName/SpecificDirectory/* ./NewLocationForCodeWData/NewSubDirectory/
    - mv ./DataSubDirectory/* ./NewLocationForCodeWData/NewDataSubDirectory/

With the file system set up as you like, adjust the base-directory for in the artifacts section of BuildSpec.yml

    artifacts:
      base-directory: ./NewLocationForCodeWData

The zipped output of AWS CodeBuild will consist of the contents of the subfolder, NewLocationForCodeWData

profile picture
answered 9 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions