CDK codebuild project - put code in a subdirectory?

0
Shorn
demandé il y a 2 ans288 vues
1 réponse
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
répondu il y a 10 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions