* Restore make test target

* make build -> go build
This commit is contained in:
Ethan Koenig 2017-12-10 18:31:07 -08:00 коммит произвёл Lunny Xiao
Родитель 58a7de2aea
Коммит c082c3bce3
2 изменённых файлов: 10 добавлений и 1 удалений

Просмотреть файл

@ -73,6 +73,16 @@ pipeline:
when:
event: [ push, tag, pull_request ]
build-without-gcc:
image: webhippie/golang:edge
pull: true
environment:
GOPATH: /srv/app
commands:
- go build # test if build succeeds without the sqlite tag
when:
event: [ push, tag, pull_request ]
test:
image: webhippie/golang:edge
pull: true

Просмотреть файл

@ -131,7 +131,6 @@ fmt-check:
.PHONY: test
test:
$(GO) build # test if go build succeed without sqlite support
$(GO) test -tags=sqlite $(PACKAGES)
.PHONY: coverage