From 1934eadfcb14719730346712accc4df09157335f Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 25 Jun 2020 16:43:12 +0200 Subject: [PATCH] Add linux/riscv64 build test --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 4f228eb..1dc5e72 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ build_test: ## test only buildable GOOS=linux GOARCH=386 go test ./... | $(BUILD_FAIL_PATTERN) GOOS=linux GOARCH=arm go test ./... | $(BUILD_FAIL_PATTERN) GOOS=linux GOARCH=arm64 go test ./... | $(BUILD_FAIL_PATTERN) + GOOS=linux GOARCH=riscv64 go test ./... | $(BUILD_FAIL_PATTERN) GOOS=freebsd go test ./... | $(BUILD_FAIL_PATTERN) GOOS=freebsd GOARCH=arm go test ./... | $(BUILD_FAIL_PATTERN) CGO_ENABLED=0 GOOS=darwin go test ./... | $(BUILD_FAIL_PATTERN)