diff options
author | Thomas Boerger <thomas@webhippie.de> | 2016-12-05 16:39:45 +0100 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2016-12-05 23:39:45 +0800 |
commit | 2b63f32b8a49d5d704dfa3f4d16e54fcbc0769d4 (patch) | |
tree | 59f485785e1afd15c5e4d1e653e2a95e7c427018 /.drone.yml | |
parent | cd0ce9f3d80b1985956ea2e6ae111adc93c29e30 (diff) | |
download | gitea-2b63f32b8a49d5d704dfa3f4d16e54fcbc0769d4.tar.gz gitea-2b63f32b8a49d5d704dfa3f4d16e54fcbc0769d4.zip |
Enabled bindata build tag and generate bindata (#352)
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.drone.yml b/.drone.yml index 251463ed61..a9feb60a55 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,11 +8,12 @@ pipeline: pull: true environment: CGO_ENABLED: 1 - TAGS: sqlite + TAGS: sqlite bindata GOPATH: /srv/app commands: - apk -U add openssh-client - make clean + - make generate - make vet - make lint - make test @@ -25,7 +26,7 @@ pipeline: pull: true environment: CGO_ENABLED: 1 - TAGS: sqlite + TAGS: sqlite bindata GOPATH: /srv/app commands: - make test-mysql @@ -37,7 +38,7 @@ pipeline: pull: true environment: CGO_ENABLED: 1 - TAGS: sqlite + TAGS: sqlite bindata GOPATH: /srv/app commands: - make test-pgsql @@ -49,7 +50,7 @@ pipeline: pull: true environment: CGO_ENABLED: 1 - TAGS: sqlite + TAGS: sqlite bindata GOPATH: /srv/app commands: - make release |