From 842fc6a9d7bacef31271c59e3ea6f131722026dd Mon Sep 17 00:00:00 2001 From: Arjun Aditya Date: Sat, 12 Oct 2024 23:52:58 +0530 Subject: [PATCH] chore: add darwin amd in makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 046aa20..7a40d1c 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ possible values: windows-amd linux-amd darwin-arm + darwin-amd endef export helpMessage @@ -19,6 +20,7 @@ test: lint: GOOS=darwin GOARCH=arm64 gomodrun golangci-lint run ./cmd/... ./src/... --verbose + GOOS=darwin GOARCH=amd64 gomodrun golangci-lint run ./cmd/... ./src/... --verbose GOOS=linux GOARCH=amd64 gomodrun golangci-lint run ./cmd/... ./src/... --verbose GOOS=windows GOARCH=amd64 gomodrun golangci-lint run ./cmd/... ./src/... --verbose @@ -30,3 +32,6 @@ linux-amd: darwin-arm: GOOS=darwin GOARCH=arm64 go build -o bin/zcli cmd/zcli/main.go + +darwin-amd: + GOOS=darwin GOARCH=amd64 go build -o bin/zcli cmd/zcli/main.go