diff options
author | Ruben Pollan <meskio@sindominio.net> | 2020-08-18 13:02:14 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-09-25 12:33:41 +0200 |
commit | 8dd79bac1adbb3142db07c6e90656676e285db89 (patch) | |
tree | 3d3af132905649fe7dbd78a703e171b677b450dd /Makefile | |
parent | 45781102d24f7bdac93dcbbf8f8ae4bfe0c3950e (diff) |
[ci] run only the tests and compile in the CI
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -79,7 +79,7 @@ build_%: -@ln -s ../../../bin/${PLATFORM}/$* build/${PROVIDER}/staging/${PLATFORM}/$* test: - @go test -tags "integration $(TAGS)" ./... + @go test -tags "integration $(TAGS)" ./pkg/... golib: CGO_ENABLED=1 go build -buildmode=c-archive -o ${TARGET_GOLIB} ${SOURCE_GOLIB} @@ -148,6 +148,7 @@ endif generate: @go generate gui/backend.go + @go generate pkg/config/version/genver/gen.go relink_default: ifneq (,$(wildcard ${DEFAULT_PROVIDER})) |