Hey! I've cloned the spicedb repo into my windows ...
# spicedb
t
Hey! I've cloned the spicedb repo into my windows machine, run
mage test:unit
and got the following error at first:
Copy code
running unit tests
go: -race requires cgo; enable cgo by setting CGO_ENABLED=1
Error: running "go ./..." failed with exit code 2
Then run
$Env:CGO_ENABLED = 1;mage test:unit
and got:
Copy code
running unit tests
# runtime/cgo
cgo: C compiler "gcc" not found: exec: "gcc": executable file not found in %PATH%
Am I missing some pre-requisite? Cheers