3
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 1 year has passed since last update.

【AWS】CodeBuildとは

Posted at

CodeBuildとは

CodeBuildとは、ソースコードをコンパイル・テストを行い、デプロイ可能なソフトウェアパッケージを作成してくれるAWSのビルドサービスのこと。
CodeBuildは、コンピューティングリソースの使用に対して、分単位で料金が発生する。

CodeBuildの流れ

CodeBuildとは、ソースコードをbuildspec.ymlに従ってビルド環境の構築とテストを行う。大まかな流れが以下となる。
① ソースコードとbuildspec.ymlを作成する。
② ソースコードとbuildspec.ymlをアップロード(CodeCommit)する。
CodeBuildでプロジェクトを作成
④ ビルドを実行

buildspec.ymlとは

buildspec.ymlとは、ビルド実行時に実行するコマンドを記述したYAML形式のファイルのこと。
このファイルをソースコードのルートディレクトリに配置することでCodeBuildbuildspec.ymlを読み込んで実行される。
上記流れのようにCodeCommitを使用した場合は、レポジトリのルートディレクトリに配置する。

3
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
3
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?