mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
29dda47cbb
* fix label count * fix vendor * fix import order * update xorm to fix bug * fix tests * fix mssql bug
90 lines
1.5 KiB
YAML
90 lines
1.5 KiB
YAML
---
|
|
kind: pipeline
|
|
name: go1.10
|
|
|
|
workspace:
|
|
base: /go
|
|
path: src/xorm.io/builder
|
|
|
|
steps:
|
|
- name: test
|
|
pull: default
|
|
image: golang:1.10
|
|
commands:
|
|
- go get -u golang.org/x/lint/golint
|
|
- go get -u github.com/stretchr/testify/assert
|
|
- go get -u github.com/go-xorm/sqlfiddle
|
|
- golint ./...
|
|
- go vet
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|
|
when:
|
|
event:
|
|
- push
|
|
- tag
|
|
- pull_request
|
|
|
|
---
|
|
kind: pipeline
|
|
name: go1.11
|
|
|
|
steps:
|
|
- name: test
|
|
pull: default
|
|
image: golang:1.11
|
|
commands:
|
|
- go get -u golang.org/x/lint/golint
|
|
- golint ./...
|
|
- go vet
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
GO111MODULE: "on"
|
|
when:
|
|
event:
|
|
- push
|
|
- tag
|
|
- pull_request
|
|
|
|
---
|
|
kind: pipeline
|
|
name: go1.12
|
|
|
|
steps:
|
|
- name: test
|
|
pull: default
|
|
image: golang:1.12
|
|
commands:
|
|
- go get -u golang.org/x/lint/golint
|
|
- golint ./...
|
|
- go vet
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
GO111MODULE: "on"
|
|
when:
|
|
event:
|
|
- push
|
|
- tag
|
|
- pull_request
|
|
|
|
---
|
|
kind: pipeline
|
|
name: go1.13
|
|
|
|
steps:
|
|
- name: test
|
|
pull: default
|
|
image: golang:1.13
|
|
commands:
|
|
- go get -u golang.org/x/lint/golint
|
|
- golint ./...
|
|
- go vet
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
GO111MODULE: "on"
|
|
when:
|
|
event:
|
|
- push
|
|
- tag
|
|
- pull_request |