We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58a7de2 commit c082c3bCopy full SHA for c082c3b
.drone.yml
@@ -73,6 +73,16 @@ pipeline:
73
when:
74
event: [ push, tag, pull_request ]
75
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
+
86
test:
87
image: webhippie/golang:edge
88
pull: true
Makefile
@@ -131,7 +131,6 @@ fmt-check:
131
132
.PHONY: test
133
134
- $(GO) build # test if go build succeed without sqlite support
135
$(GO) test -tags=sqlite $(PACKAGES)
136
137
.PHONY: coverage
0 commit comments