-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fly Deploy並列実行による失敗をマージキューで防ぐ #743
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PRでブランチに追加コミットがあったときもpull_requestだけで対応でき、pushはいらない。 PR化されていないブランチへのpushが影響を受ける。 しかしこれもドラフトPRで対応できる。 現在はmainへのpushはPRを基本とする運用なので、消しても問題なさそう。 push/PRで重複起動するためにいれていたskip-duplicate-actionsも削除した。
📦 esbuild Bundle Analysis for sakazukiThis analysis was generated by esbuild-bundle-analyzer. 🤖
Largest pathsThese visualization shows top 20 largest paths in the bundle.Meta file: meta.json, Out file: app/assets/builds/application.js
DetailsNext to the size is how much the size has increased or decreased compared with the base branch of this PR.
|
merge queを利用するにはGithub Enterpriseの契約(月21ドル)が必要なのでダメです🙅♀️ |
ぐえー。 |
This reverts commit 90962bf.
このパッチより前では、並列の制約が特に指定がされていなかった。 そのため、複数のPRをマージすると、Fly Deployが並列で走っていた。 するとFly Deployが失敗してしまうことがあった。 このパッチによりFly Deployを同時に1つまでに制限した。 また、先入れ先出しで、先のDeployが終わらないと次のDelpoyが始まらない設定にした。
はーん、答えは2行だった |
momocus
approved these changes
Jul 15, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fix #615
やったこと
FlyへのデプロイをGitHubマージキューで行うようにした参考資料
以下古い内容
必要な追加作業
今後どうなるか