-
Notifications
You must be signed in to change notification settings - Fork 11
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
CI: Mac用リリースを Universal Binary (Apple Silicon & Intel) にする #502
Conversation
ウォークスルーこの変更は、異なるプラットフォームに対して特定の設定を含むプラットフォームマトリックスの再構成、それに応じて 変更
TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅ Additional details and impacted files
📢 Thoughts on this report? Let us know! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 0
Configuration used: CodeRabbit UI
Files selected for processing (1)
- .github/workflows/release.yaml (3 hunks)
Additional comments: 3
.github/workflows/release.yaml (3)
- 13-19: プラットフォームマトリックスの再構成については、Macリリースのユニバーサルバイナリをサポートし、ビルドプロセスを最適化するための良い変更です。GitHub Actionsの仕様に沿っていることを確認してください。
- 20-20:
runs-on
ディレクティブの調整は、プラットフォームマトリックスの再構成に伴う必要な変更です。指定されたすべてのプラットフォームでワークフローが正しく実行されることを確認してください。- 34-39: Ubuntu上でのビルドプロセスを最適化するために、依存関係をインストールするステップの追加は良い考えです。条件とコマンドが正しく指定されていることを確認し、ビルドの失敗を避けてください。
Universal Binary 対応 (#502) の不備を修正。rustup でターゲット aarch64-apple-darwin を追加する。 参考: https://github.com/tauri-apps/tauri-action/blob/dev/.github/workflows/test-action.yml
GitHub Actions での Mac 用のリリースにおいて、 Universal Binary をビルドするようにする。
(普通にActionsでビルドするとIntel用だけのビルドになってしまい、Apple SiliconではRosetta 2での実行になってしまう)
参考: https://github.com/tauri-apps/tauri-action/blob/dev/.github/workflows/test-action.yml
Summary by CodeRabbit