From 18d3965fa2a90c9b5654adc7ca17627979a774e8 Mon Sep 17 00:00:00 2001 From: Jan Mercl <0xjnml@gmail.com> Date: Mon, 21 Dec 2020 21:13:47 +0100 Subject: [PATCH] fix Makefile --- Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f1e5493..6c7b23d 100644 --- a/Makefile +++ b/Makefile @@ -17,12 +17,14 @@ all: editor go test -i go test -v 2>&1 -timeout 24h | tee -a log go run speedtest1/main_$(shell go env GOOS)_$(shell go env GOARCH).go - GOOS=linux GOARCH=arm go build -v ./... - GOOS=linux GOARCH=arm64 go build -v ./... + GOOS=linux GOARCH=386 go build -v ./... GOOS=linux GOARCH=386 go build -v ./... GOOS=linux GOARCH=amd64 go build -v ./... - GOARCH=386 go build -v ./... - GOARCH=amd64 go build -v ./... + GOOS=linux GOARCH=amd64 go build -v ./... + GOOS=linux GOARCH=arm go build -v ./... + GOOS=linux GOARCH=arm64 go build -v ./... + GOOS=windows GOARCH=386 go build -v ./... + GOOS=windows GOARCH=amd64 go build -v ./... golint 2>&1 | grep -v $(ngrep) || true misspell *.go staticcheck || true