mirror of
https://github.com/HDT3213/godis.git
synced 2025-10-04 16:32:41 +08:00
8 lines
431 B
Bash
8 lines
431 B
Bash
#!/usr/bin/env bash
|
|
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o target/godis-linux-amd64 ./
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o target/godis-linux-arm64 ./
|
|
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o target/godis-darwin-amd64 ./
|
|
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o target/godis-darwin-arm64 ./
|
|
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o target/godis-windows-amd64.exe ./
|