Fix zsh git branch refresh race after cwd change (#71)
* Fix zsh git branch refresh race after cwd change * Clarify intentional duplicate cwd check in git refresh path * Add Metal Toolchain download step to CI and release workflows Fixes build failure when compiling Metal shaders for iOS xcframework targets — the self-hosted runner needs `xcodebuild -downloadComponent MetalToolchain` installed before `xcrun metal` can run. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
d24030db58
commit
65ac29d827
3 changed files with 22 additions and 2 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
|
@ -55,6 +55,9 @@ jobs:
|
|||
xcodebuild -version
|
||||
xcrun --sdk macosx --show-sdk-path
|
||||
|
||||
- name: Download Metal Toolchain
|
||||
run: xcodebuild -downloadComponent MetalToolchain
|
||||
|
||||
- name: Build GhosttyKit.xcframework
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
|
|
|||
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
|
|
@ -46,6 +46,9 @@ jobs:
|
|||
brew install zig
|
||||
npm install --global create-dmg
|
||||
|
||||
- name: Download Metal Toolchain
|
||||
run: xcodebuild -downloadComponent MetalToolchain
|
||||
|
||||
- name: Build GhosttyKit.xcframework
|
||||
run: |
|
||||
cd ghostty
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue