Skip to content
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

Open
wants to merge 9 commits into
base: main
Choose a base branch
from

Conversation

thegrannychaseroperation
Copy link
Contributor

When submitting this pull request, I confirm the following (please check the boxes):

  • I have read and understood the Contributor Guidelines.
  • I have checked that there are no duplicate pull requests related to this request.
  • I have considered, and confirm that this submission is valuable to others.
  • I accept that this submission may not be used and the pull request may be closed at the discretion of the maintainers.

Fill in the PR content:

Copy link
Contributor

@greptile-apps greptile-apps bot left a 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 only macos-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

@@ -10,7 +10,7 @@ jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
os: [macos-latest]
Copy link
Contributor

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.

Suggested change
os: [macos-latest]
os: [macos-latest, windows-latest, ubuntu-latest]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants