From 1d3d04fc6047767aba5d2e82e8ea12205720917c Mon Sep 17 00:00:00 2001 From: Ruben Pollan Date: Thu, 2 Aug 2018 12:31:06 +0200 Subject: [test] build standalone on the CI --- .gitlab-ci.yml | 2 +- Makefile | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index abf2e93..9b4761b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,7 +16,7 @@ build_test: - ln -s "$(pwd)" ${APP_PATH} - cd ${APP_PATH} - make get - - make static + - make standalone - make build tags: - linux diff --git a/Makefile b/Makefile index 1b59f98..9c86e07 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,8 @@ TAGS ?= gtk_3_18 all: icon locales get build get: - go get -tags $(TAGS) . ./standalone + go get -tags $(TAGS) ./... + go get -tags "$(TAGS) standalone" ./... build: go build -tags $(TAGS) -ldflags "-X main.version=`git describe --tags`" -- cgit v1.2.3