You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
284 B

all: build-linux-arm64
linux:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build
mac:
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build
build-linux-arm64:
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go mod tidy
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o exporter.bin main.go