Switched to Go 1.13.3

This commit is contained in:
Laszlo Fogas 2019-11-14 11:42:35 +01:00
parent af4e65e994
commit b3343c2181
3 changed files with 7 additions and 5 deletions

View file

@ -4,7 +4,7 @@ clone:
pipeline:
test:
image: golang:1.12.4
image: golang:1.13.3
group: test
commands:
- go test -cover -timeout 30s $(go list ./...)
@ -19,7 +19,7 @@ pipeline:
- make test-frontend
test-postgres:
image: golang:1.12.4
image: golang:1.13.3
group: db-test
environment:
- DATABASE_DRIVER=postgres
@ -28,7 +28,7 @@ pipeline:
- go test -timeout 30s github.com/laszlocph/woodpecker/store/datastore
test-mysql:
image: golang:1.12.4
image: golang:1.13.3
group: db-test
environment:
- DATABASE_DRIVER=mysql
@ -42,7 +42,7 @@ pipeline:
- make build-frontend
build:
image: golang:1.12.4
image: golang:1.13.3
commands:
- go get github.com/laszlocph/togo
- (cd web/; go generate ./...)

2
go.mod
View file

@ -19,7 +19,7 @@ require (
github.com/drone/expr v0.0.0-20170909010628-72f4df4a266b
github.com/drone/signal v0.0.0-20170915013802-ac5d07ef1315
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect
github.com/franela/goblin v0.0.0-20160123211154-889391d73023
github.com/franela/goblin v0.0.0-20181003173013-ead4ad1d2727
github.com/ghodss/yaml v0.0.0-20161207003320-04f313413ffd
github.com/gin-gonic/contrib v0.0.0-20150815172543-14f66d54cdb9
github.com/gin-gonic/gin v0.0.0-20160130002857-3d002e382355

2
go.sum
View file

@ -38,6 +38,8 @@ github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 h1:BHsljHzVlRcyQhjr
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc=
github.com/franela/goblin v0.0.0-20160123211154-889391d73023 h1:FwwGiDaXOnnZRvmccly64PWGmOvBmmzKkHquNOMRd4I=
github.com/franela/goblin v0.0.0-20160123211154-889391d73023/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4=
github.com/franela/goblin v0.0.0-20181003173013-ead4ad1d2727 h1:eouy4stZdUKn7n98c1+rdUTxWMg+jvhP+oHt0K8fiug=
github.com/franela/goblin v0.0.0-20181003173013-ead4ad1d2727/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4=
github.com/ghodss/yaml v0.0.0-20161207003320-04f313413ffd h1:U3yHrYB7NWH2o3UFzJ1J+TknZqM9QQtF8KVIE6Qzrfs=
github.com/ghodss/yaml v0.0.0-20161207003320-04f313413ffd/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
github.com/gin-gonic/contrib v0.0.0-20150815172543-14f66d54cdb9 h1:gISPkiYdlRqAEbns25dOAoT/w5dxhI4ACWUYfTr3dFQ=