Fixed the macOS x86_64 CI build pipeline by adding the missing install step (meson install -C build-macos-x86_64) immediately after compilation, so the staged binary exists before makebundle.sh runs. This resolves the Cannot find main binary: .../stage/x86_64/bin/zoitechat packaging failure path.

This commit is contained in:
2026-02-19 13:49:14 -07:00
parent 7ab4b8d2eb
commit 8a166a9824

View File

@@ -134,6 +134,7 @@ jobs:
-Dauto_features=enabled -Dauto_features=enabled
CFLAGS="-arch x86_64" LDFLAGS="-arch x86_64" meson compile -C build-macos-x86_64 CFLAGS="-arch x86_64" LDFLAGS="-arch x86_64" meson compile -C build-macos-x86_64
meson install -C build-macos-x86_64
- name: Stage runtime dependencies for bundling (x86_64) - name: Stage runtime dependencies for bundling (x86_64)