-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
WIP : Improving macos build step docs #3873
base: main
Are you sure you want to change the base?
Conversation
…learer with a screenshot
Ah sorry about that. It’s literally only an issue since the last few commits so I’ve never updated the docs. I was hoping to have found a better solution than the hack I put for the GitHub actions build. |
@osy - no worries, im trying to update the docs, for things i find confusing. Did manage to get a working sysRoot build downloaded from github, so will see into making those steps clearer. Also i have seen several project branch for out a subproject specifically for just providing releases for dependencies via github releases (and automating it via CLI, without needing the login, etc). But I understand completely avoiding that route, and keeping everything in one place for now (less worry about keeping things in sync) |
|
||
### Building Dependencies (Advanced) | ||
- Find the list of [release builds here][1]. | ||
- Pick the latest release and download all of the `Sysroot-macos-*` artifacts for the architecture you will need (you will need to be signed in to a github account). If you only intend to run locally, it is alright to just download the sysroot for your traget architecture. |
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.
Typo says "traget"
fb33cb2
to
3260ced
Compare
|
||
### Building Dependencies (Advanced) | ||
- Find the list of [release builds here][1]. | ||
- Pick the latest release and download all of the `Sysroot-macos-*` artifacts for the architecture you will need (you will need to be signed in to a github account). If you only intend to run locally, it is alright to just download the sysroot for your traget architecture. |
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.
- Pick the latest release and download all of the `Sysroot-macos-*` artifacts for the architecture you will need (you will need to be signed in to a github account). If you only intend to run locally, it is alright to just download the sysroot for your traget architecture. | |
- Pick the latest release and download all the `Sysroot-macos-*` artifacts for the architecture of your choice (you will need to be signed in to a GitHub account). If you only intend to run it locally, it is sufficient to download the SysRoot for your target architecture. |
While trying to work on : #3792
I find that the build docs to be insufficient for my rather new macOS Monterey build (v12.3)
So tried to pick at it, between the 1 hour+ build time of github actions (my only way of validating my code is somewhat valid).
Generally this was due to missing python modules, which installing pip3 on homebrew only makes it worse. The most progress i had was as what I have modified, but it fails at the spice project build step with the following
On further investigation, this seems like a possibly known issue for spice which is covered and resolved here
So as it seems i might still be stuck depending on github actions to validate builds >_<"
Any feedback on the missing steps would be appreciated
Alternatively, how do I use an .xarchive (built on github) to build and run the .app (on a macbook) : without a paid apple developer account.