1
1
mirror of https://github.com/go-gitea/gitea synced 2025-08-02 07:38:35 +00:00

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.
This commit is contained in:
Thomas Boerger
2017-02-02 04:56:08 +01:00
committed by Lunny Xiao
parent 79ab69fe30
commit ea8c8cdaf3
5 changed files with 23 additions and 8 deletions

View File

@@ -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 ]