Skip to content

Commit 7e1947f

Browse files
committed
test: add Windows native build job to see the actual error
1 parent 587fdb3 commit 7e1947f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build-core.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,20 @@ jobs:
3535
run: |
3636
cd packages/core
3737
bun run test
38+
39+
# Test native Windows build to see the actual error
40+
build-windows-native:
41+
name: Windows - Native Zig Build Test
42+
runs-on: windows-latest
43+
steps:
44+
- name: Checkout code
45+
uses: actions/checkout@v4
46+
47+
- name: Setup Zig
48+
uses: goto-bus-stop/setup-zig@v2
49+
with:
50+
version: 0.15.2
51+
52+
- name: Build native with Zig (Windows)
53+
working-directory: packages/core/src/zig
54+
run: zig build -Doptimize=ReleaseFast

0 commit comments

Comments
 (0)