summaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorThomas Boerger <thomas@webhippie.de>2017-02-02 04:56:08 +0100
committerLunny Xiao <xiaolunwen@gmail.com>2017-02-02 11:56:08 +0800
commitea8c8cdaf358a3cc96fbf749d50a9b15a6f3ca41 (patch)
treedad82dc1660de7e1684a142322983e006a7f9009 /.drone.yml
parent79ab69fe30b9e7779186c1ffde48e5186a0f578d (diff)
downloadgitea-ea8c8cdaf358a3cc96fbf749d50a9b15a6f3ca41.tar.gz
gitea-ea8c8cdaf358a3cc96fbf749d50a9b15a6f3ca41.zip
Fix master builds on mips* again (#815)
* Use local folder for xgo * Always do crosscompile and testing to fail early * Added mips* values for boltdb In order to get master building again I have applied these 2 additional files to boltdb. This should get dropped when https://github.com/boltdb/bolt/issues/656 gets solved.
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml11
1 files changed, 5 insertions, 6 deletions
diff --git a/.drone.yml b/.drone.yml
index 260ffece50..e6ec2b5733 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -35,7 +35,7 @@ pipeline:
commands:
- make test-mysql
when:
- event: [ push ]
+ event: [ push, tag, pull_request ]
test-pgsql:
image: webhippie/golang:edge
@@ -47,7 +47,7 @@ pipeline:
commands:
- make test-pgsql
when:
- event: [ push ]
+ event: [ push, tag, pull_request ]
updater:
image: karalabe/xgo-latest:latest
@@ -59,8 +59,7 @@ pipeline:
commands:
- make release
when:
- event: [ push, tag ]
- branch: [ master, release/*, refs/tags/* ]
+ event: [ push, tag, pull_request ]
coverage:
image: plugins/coverage
@@ -140,11 +139,11 @@ services:
- MYSQL_DATABASE=test
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
when:
- event: [ push ]
+ event: [ push, tag, pull_request ]
pgsql:
image: postgres:9.5
environment:
- POSTGRES_DB=test
when:
- event: [ push ]
+ event: [ push, tag, pull_request ]