From 2690f55d518c864cb2a37a1cd53e84ff4bc4bbdf Mon Sep 17 00:00:00 2001 From: Alex Sergeyev Date: Mon, 16 Feb 2015 13:06:07 -0500 Subject: [PATCH] Removed attempt to test go code for each platform... Go compiler is building code specific for other platform and therefore it could be only ran from that platform, not from one that's used for a build. --- release/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/release/Makefile b/release/Makefile index b62027f6..bf93ca2c 100644 --- a/release/Makefile +++ b/release/Makefile @@ -92,7 +92,6 @@ out/$(RELEASE_VERSION)/%/websocketd out/$(RELEASE_VERSION)/%/websocketd.exe: $(G rm -f $@ mkdir -p $(dir $@) $(FLAGS_$*) $(GO_DIR)/go/bin/go get golang.org/x/net/websocket - $(FLAGS_$*) $(GO_DIR)/go/bin/go test github.com/joewalnes/websocketd/libwebsocketd $(FLAGS_$*) $(GO_DIR)/go/bin/go build -ldflags "-X main.version $(RELEASE_VERSION)" -o out/$(RELEASE_VERSION)/$*/websocketd$(EXTENSION_$*) $(wildcard ../*.go) touch $@