-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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: adding macos build to the pipeline #1470
base: main
Are you sure you want to change the base?
Conversation
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.
PR Summary
This PR adds macOS build support to the CI pipeline but contains critical configuration gaps that need to be addressed.
- Missing
yarn build:mac
command and corresponding build step in both.github/workflows/release.yml
and.github/workflows/build.yml
.github/workflows/build.yml
incorrectly restricts matrix to onlymacos-latest
while retaining Windows/Linux build steps.github/workflows/release.yml
attempts to upload macOS artifacts without proper build configuration- Environment variables for macOS builds need to be properly configured in both workflow files
- Artifact paths need validation for macOS-specific file types (
.dmg
)
2 file(s) reviewed, 1 comment(s)
Edit PR Review Bot Settings | Greptile
.github/workflows/build.yml
Outdated
@@ -10,7 +10,7 @@ jobs: | |||
build: | |||
strategy: | |||
matrix: | |||
os: [windows-latest, ubuntu-latest] | |||
os: [macos-latest] |
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.
logic: Removing Windows and Ubuntu builds while keeping their build steps will result in failed builds. Either restore all OS targets or remove unused build steps.
os: [macos-latest] | |
os: [macos-latest, windows-latest, ubuntu-latest] |
|
When submitting this pull request, I confirm the following (please check the boxes):
Fill in the PR content: