Bitbucket Cloud の使用を開始する
Bitbucket Cloud を初めてお使いですか? 新規ユーザー用のガイドをご利用ください。
プル リクエストを使用してデプロイする主な方法は 2 つあります。
プル リクエストでのみ実行されるように Pipelines を定義する
リポジトリ用の特定の構造を使用する
リポジトリ内のプル リクエストに対し、プル リクエストでのみ実行する特別なパイプラインを定義できます。このパイプラインは、標準パイプラインと同じ方法でデプロイするよう設定できます。これはテスト環境へのデプロイでのみ利用することをおすすめします。
リポジトリ ブランチ:
main: 使用している統合ブランチ
staging: このブランチを使用してステージングへのデプロイメントをトリガーします
production: このブランチを使用して本番環境へのデプロイメントをトリガーします
featre/xxx: すべての機能ブランチ
上記のブランチ構造に加えて、異なるブランチ用の複数のフローを含む .YML ファイルを定義できます。
bitbucket-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This is a sample build configuration for Javascript.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
image: node:10.15.0
pipelines:
default:
- step:
script:
- npm install
- npm test
branches:
staging:
- step:
script:
- npm install
- npm test
- export HEROKU_APP_NAME=$STAGING_APP
- ./heroku_deploy.sh # Check https://bitbucket.org/rjst/heroku-deploy to understand how to deploy to Heroku
production:
- step:
script:
- npm install
- npm test
- export HEROKU_APP_NAME=$PROD_APP
- ./heroku_deploy.sh # Check https://bitbucket.org/rjst/heroku-deploy to understand how to deploy to Heroku
オンライン バリデーターを使用して bitbucket-pipelines.yml ファイルをチェックすることができます。
staging と production を除くすべてのブランチは、テストの実行のみを行う既定のパイプラインを使用します。
staging と deployment ブランチは異なる構造を持ち、それぞれステージングおよび本番環境へのデプロイのためにセットアップされます。
staging および production ブランチが直接プッシュされないように、ブランチ権限を使用してプル リクエスト経由でのみマージが許可されるようにすることができます。
これで、feature ブランチで新機能や改善機能を開発して、main ブランチに統合できます。
プル リクエストを作成すると、ステージング環境へのデプロイの前に変更をレビューできます。このプロセスを繰り返して production にデプロイします (staging ブランチから production ブランチのプル リクエストを作成)。
この内容はお役に立ちましたか?