0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

自分用メモ

Last updated at Posted at 2021-01-04

#CodePipelineについて

・複数のCodeBuildを使用
・buldspec.ymlが置いてあるリポジトリとアプリのソースが別
・特定のリポジトリのコミットIDをCodePipelineに組み込んだ各CodeBuildで変数として利用したい

→CodePipelineのソース取得ステージでアクションを増やし、アクションプロバイダにGitHubを指定することで複数のソースを取得するように設定できる。

この時変数の名前空間を設定しておく。
今回はSecondSourceVariables。

CodePipeline上の各CodeBuild設定部分で環境変数を指定
(CodeBuildで設定するのではなくCodePipelineで設定)
Key: COMMIT_ID(任意)
Value: #{SecondSourceVariables.CommitId}   ##{変数の名前空間.CommitId}

#gitのコミットIDについて

「.git/refs/heads」のブランチの中に格納されている
CodeBuild上でソースリポジトリ2つの場合下記で行ける模様。
CODEBUILD_SRC_DIR"_APP"はソース識別子。

  - HEAD_VALUE=$(cat ${CODEBUILD_SRC_DIR_APP}/.git/HEAD)
  - echo ${HEAD_VALUE}
  - IMAGE_TAG=$(echo ${HEAD_VALUE} | head -c 7)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?