Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci-macos-compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,16 @@ jobs:
# ---------------------------------------------------------------------

- name: Build app
env:
# Load-bearing on the macos-26 leg. A build phase runs
# scripts/build-ghostty-cli-helper.sh, which builds the Ghostty CLI
# helper with zig unless this is 1 -- and zig 0.15.2's MachO linker
# cannot resolve libSystem on macOS 26 (same reason the matrix sets
# skip_zig there). Without this the phase fails with a bare
# "Command PhaseScriptExecution failed with a nonzero exit code" and no
# error line, which is exactly how this step failed the first time it
# ran on that leg.
PROGRAMA_SKIP_ZIG_BUILD: ${{ matrix.skip_zig && '1' || '0' }}
run: |
set -euo pipefail
SOURCE_PACKAGES_DIR="$PWD/.ci-source-packages"
Expand Down
Loading