From 0927616f30d5e62face0f4da8ac8eeb73a0a04ac Mon Sep 17 00:00:00 2001 From: Jannis Mattheis Date: Sun, 20 Jan 2019 11:40:24 +0100 Subject: [PATCH] Execute e2e tests with compile flags -w -s --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e1fd22b..a6f10fa 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ format: goimports -w $(shell find . -type f -name '*.go' -not -path "./vendor/*") test-js: - go build -o removeme/gotify app.go + go build -ldflags="-s -w" -o removeme/gotify app.go (cd ui && CI=true GOTIFY_EXE=../removeme/gotify npm test) rm -rf removeme