[PR #466] [CLOSED] IGNORE: Windows native build to reproduce error #1335

Closed
opened 2026-03-14 09:31:10 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/anomalyco/opentui/pull/466
Author: @remorses
Created: 1/3/2026
Status: Closed

Base: mainHead: test-windows-native


📝 Commits (10+)

  • e8fc818 upgrade to zig 0.15.2 with ghostty-vt dependency
  • fda777b fix(ci): update zig to 0.15.2 and skip macOS cross-compilation from Linux
  • 0828eb1 fix: add macOS SDK for cross-compilation from Linux
  • fc7907e fix: add explicit refs to git URLs in build.zig.zon
  • c24c7b0 fix: correct hash for macos_sdk dependency
  • f6976e8 fix: use raw macOS SDK tarball instead of outdated zig package
  • d4d4b44 fix(ci): only build lib, not native binaries for all platforms
  • 486901b fix(ci): use macos-latest runners for cross-compilation
  • b3d1e91 fix: build only native platform by default, add --all for all platforms
  • 6654359 fix: remove reference to non-existent ghostty-terminal.zig test file

📊 Changes

35 files changed (+831 additions, -606 deletions)

View changed files

📝 .github/workflows/build-core.yml (+19 -2)
📝 .github/workflows/build-native.yml (+5 -2)
📝 .github/workflows/build-react.yml (+2 -2)
📝 .github/workflows/build-solid.yml (+2 -2)
.github/workflows/build-windows.yml (+144 -0)
📝 .zig-version (+1 -1)
📝 packages/core/docs/development.md (+10 -0)
📝 packages/core/scripts/build.ts (+25 -24)
📝 packages/core/src/zig/ansi.zig (+10 -7)
📝 packages/core/src/zig/bench-utils.zig (+3 -1)
📝 packages/core/src/zig/buffer.zig (+13 -13)
📝 packages/core/src/zig/build.zig (+100 -91)
📝 packages/core/src/zig/build.zig.zon (+7 -3)
📝 packages/core/src/zig/edit-buffer.zig (+1 -1)
📝 packages/core/src/zig/event-bus.zig (+2 -2)
📝 packages/core/src/zig/lib.zig (+31 -24)
📝 packages/core/src/zig/logger.zig (+2 -2)
📝 packages/core/src/zig/renderer.zig (+102 -96)
📝 packages/core/src/zig/rope.zig (+62 -55)
📝 packages/core/src/zig/syntax-style.zig (+1 -1)

...and 15 more files

📄 Description

Testing native Windows zig build to see the actual error (FileTooBig/ftruncate issue). Will delete after seeing logs.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/anomalyco/opentui/pull/466 **Author:** [@remorses](https://github.com/remorses) **Created:** 1/3/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `test-windows-native` --- ### 📝 Commits (10+) - [`e8fc818`](https://github.com/anomalyco/opentui/commit/e8fc818fe429b20b81d040bf2e88a827a5f50b78) upgrade to zig 0.15.2 with ghostty-vt dependency - [`fda777b`](https://github.com/anomalyco/opentui/commit/fda777b7d6ac8ad012f23273a7847a42fbe0eb1f) fix(ci): update zig to 0.15.2 and skip macOS cross-compilation from Linux - [`0828eb1`](https://github.com/anomalyco/opentui/commit/0828eb120b55bcb95ba84b69f0b3025a00ef4db7) fix: add macOS SDK for cross-compilation from Linux - [`fc7907e`](https://github.com/anomalyco/opentui/commit/fc7907ef04806e8b9bda45c629347934151b85bc) fix: add explicit refs to git URLs in build.zig.zon - [`c24c7b0`](https://github.com/anomalyco/opentui/commit/c24c7b014f2993566a35f6659a6f3fdc5751c0bb) fix: correct hash for macos_sdk dependency - [`f6976e8`](https://github.com/anomalyco/opentui/commit/f6976e80f572b51c2c00beae2a82af7477268229) fix: use raw macOS SDK tarball instead of outdated zig package - [`d4d4b44`](https://github.com/anomalyco/opentui/commit/d4d4b4414e5de52e25010ebaceb2c83623ad5930) fix(ci): only build lib, not native binaries for all platforms - [`486901b`](https://github.com/anomalyco/opentui/commit/486901b645c4dbde9d72208635bc85e4e07aab9d) fix(ci): use macos-latest runners for cross-compilation - [`b3d1e91`](https://github.com/anomalyco/opentui/commit/b3d1e913b2b170ed88f19dfa34d6c7410add0a7b) fix: build only native platform by default, add --all for all platforms - [`6654359`](https://github.com/anomalyco/opentui/commit/6654359553d0ee2bca1f0b7d3ee1d3f4dfd44afe) fix: remove reference to non-existent ghostty-terminal.zig test file ### 📊 Changes **35 files changed** (+831 additions, -606 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build-core.yml` (+19 -2) 📝 `.github/workflows/build-native.yml` (+5 -2) 📝 `.github/workflows/build-react.yml` (+2 -2) 📝 `.github/workflows/build-solid.yml` (+2 -2) ➕ `.github/workflows/build-windows.yml` (+144 -0) 📝 `.zig-version` (+1 -1) 📝 `packages/core/docs/development.md` (+10 -0) 📝 `packages/core/scripts/build.ts` (+25 -24) 📝 `packages/core/src/zig/ansi.zig` (+10 -7) 📝 `packages/core/src/zig/bench-utils.zig` (+3 -1) 📝 `packages/core/src/zig/buffer.zig` (+13 -13) 📝 `packages/core/src/zig/build.zig` (+100 -91) 📝 `packages/core/src/zig/build.zig.zon` (+7 -3) 📝 `packages/core/src/zig/edit-buffer.zig` (+1 -1) 📝 `packages/core/src/zig/event-bus.zig` (+2 -2) 📝 `packages/core/src/zig/lib.zig` (+31 -24) 📝 `packages/core/src/zig/logger.zig` (+2 -2) 📝 `packages/core/src/zig/renderer.zig` (+102 -96) 📝 `packages/core/src/zig/rope.zig` (+62 -55) 📝 `packages/core/src/zig/syntax-style.zig` (+1 -1) _...and 15 more files_ </details> ### 📄 Description Testing native Windows zig build to see the actual error (FileTooBig/ftruncate issue). Will delete after seeing logs. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-14 09:31:10 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/opentui#1335
No description provided.