CDK codebuild project - put code in a subdirectory?

0
Shorn
質問済み 2年前288ビュー
1回答
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
回答済み 10ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ