Skip to content

Commit 65f575c

Browse files
committed
fix(ci): include linux node binary and use clang-cl for go
1 parent 646354d commit 65f575c

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/ci-go.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ jobs:
9191
$env:CGO_LDFLAGS = "-L$ffiPath -lkreuzberg_ffi"
9292
$env:CGO_CFLAGS = "-I$workspace/crates/kreuzberg-ffi"
9393
$env:CGO_CXXFLAGS = $env:CGO_CFLAGS
94-
$env:CC = "cl.exe"
95-
$env:CXX = "cl.exe"
94+
$env:CC = "clang-cl"
95+
$env:CXX = "clang-cl"
9696
} else {
9797
$env:LD_LIBRARY_PATH = "$ffiPath;$env:LD_LIBRARY_PATH"
9898
$env:DYLD_LIBRARY_PATH = "$ffiPath;$env:DYLD_LIBRARY_PATH"

crates/kreuzberg-node/.npmignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
target
3+
artifacts
4+
npm
5+
*.tgz
6+
*.log
7+

0 commit comments

Comments
 (0)