Skip to content

Commit c082c3b

Browse files
ethantkoeniglunny
authored andcommitted
Restore make test target (#3139)
* Restore make test target * make build -> go build
1 parent 58a7de2 commit c082c3b

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.drone.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,16 @@ pipeline:
7373
when:
7474
event: [ push, tag, pull_request ]
7575

76+
build-without-gcc:
77+
image: webhippie/golang:edge
78+
pull: true
79+
environment:
80+
GOPATH: /srv/app
81+
commands:
82+
- go build # test if build succeeds without the sqlite tag
83+
when:
84+
event: [ push, tag, pull_request ]
85+
7686
test:
7787
image: webhippie/golang:edge
7888
pull: true

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ fmt-check:
131131

132132
.PHONY: test
133133
test:
134-
$(GO) build # test if go build succeed without sqlite support
135134
$(GO) test -tags=sqlite $(PACKAGES)
136135

137136
.PHONY: coverage

0 commit comments

Comments
 (0)