Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix
Signed-off-by: Kevin Zhang <kzhang@tecton.ai>
  • Loading branch information
kevjumba committed Jul 8, 2022
commit f779bbd547bec82772f590a82f82bf6c860ef578
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ compile-go-lib: install-go-proto-dependencies install-go-ci-dependencies
COMPILE_GO=True python setup.py build_ext --inplace

# Needs feast package to setup the feature store
test-go: install-python-ci-dependencies compile-go-lib
go test ./...
test-go: compile-go-lib
go test -tags cgo,ccalloc ./...

format-go:
gofmt -s -w go/
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def build_extension(self, ext: Extension):
"-vm",
sys.executable,
"--build-tags",
'cgo ccalloc',
'cgo,ccalloc',
"--dynamic-link=True",
"-no-make",
*ext.sources,
Expand Down