xorm/.drone.yml

437 lines
11 KiB
YAML
Raw Normal View History

---
kind: pipeline
2019-11-12 11:50:57 +00:00
name: go1.10-build
steps:
- name: build
pull: default
image: golang:1.10
commands:
- go get -t -d -v ./...
- go build -v
when:
event:
- push
- pull_request
2019-11-12 11:50:57 +00:00
---
kind: pipeline
name: go1.10-test-sqlite
2019-11-12 12:26:49 +00:00
depends_on:
- go1.10-build
clone:
disable: true
2019-11-12 11:50:57 +00:00
steps:
- name: test-sqlite
pull: default
image: golang:1.10
commands:
- "go test -v -race -db=\"sqlite3\" -conn_str=\"./test.db\" -coverprofile=coverage1-1.txt -covermode=atomic"
- "go test -v -race -db=\"sqlite3\" -conn_str=\"./test.db\" -cache=true -coverprofile=coverage1-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
2019-11-12 11:50:57 +00:00
---
kind: pipeline
name: go1.10-test-mysql
2019-11-12 12:26:49 +00:00
depends_on:
- go1.10-build
clone:
disable: true
2019-11-12 11:50:57 +00:00
steps:
- name: test-mysql
pull: default
image: golang:1.10
commands:
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(mysql)/xorm_test\" -coverprofile=coverage2-1.txt -covermode=atomic"
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(mysql)/xorm_test\" -cache=true -coverprofile=coverage2-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
- name: test-mysql-utf8mb4
pull: default
image: golang:1.10
commands:
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(mysql)/xorm_test?charset=utf8mb4\" -coverprofile=coverage2.1-1.txt -covermode=atomic"
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(mysql)/xorm_test?charset=utf8mb4\" -cache=true -coverprofile=coverage2.1-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
- name: test-mymysql
pull: default
image: golang:1.10
commands:
- "go test -v -race -db=\"mymysql\" -conn_str=\"tcp:mysql:3306*xorm_test/root/\" -coverprofile=coverage3-1.txt -covermode=atomic"
- "go test -v -race -db=\"mymysql\" -conn_str=\"tcp:mysql:3306*xorm_test/root/\" -cache=true -coverprofile=coverage3-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
2019-11-12 11:50:57 +00:00
services:
- name: mysql
pull: default
image: mysql:5.7
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: xorm_test
when:
event:
- push
- tag
- pull_request
---
kind: pipeline
name: go1.10-test-postgres
2019-11-12 12:26:49 +00:00
depends_on:
- go1.10-build
clone:
disable: true
2019-11-12 11:50:57 +00:00
steps:
- name: test-postgres
pull: default
image: golang:1.10
commands:
- "go test -v -race -db=\"postgres\" -conn_str=\"postgres://postgres:@pgsql/xorm_test?sslmode=disable\" -coverprofile=coverage4-1.txt -covermode=atomic"
- "go test -v -race -db=\"postgres\" -conn_str=\"postgres://postgres:@pgsql/xorm_test?sslmode=disable\" -cache=true -coverprofile=coverage4-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
- name: test-postgres-schema
pull: default
image: golang:1.10
commands:
- "go test -v -race -db=\"postgres\" -conn_str=\"postgres://postgres:@pgsql/xorm_test?sslmode=disable\" -schema=xorm -coverprofile=coverage5-1.txt -covermode=atomic"
- "go test -v -race -db=\"postgres\" -conn_str=\"postgres://postgres:@pgsql/xorm_test?sslmode=disable\" -schema=xorm -cache=true -coverprofile=coverage5-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
2019-11-12 11:50:57 +00:00
services:
- name: pgsql
pull: default
2019-11-12 11:50:57 +00:00
image: postgres:9.5
environment:
POSTGRES_DB: xorm_test
POSTGRES_USER: postgres
2019-09-30 12:42:31 +00:00
when:
event:
- push
2019-11-12 11:50:57 +00:00
- tag
2019-09-30 12:42:31 +00:00
- pull_request
2019-11-12 11:50:57 +00:00
---
kind: pipeline
name: go1.10-test-mssql
2019-11-12 12:26:49 +00:00
depends_on:
- go1.10-build
clone:
disable: true
2019-11-12 11:50:57 +00:00
steps:
- name: test-mssql
2019-09-30 12:42:31 +00:00
pull: default
image: golang:1.10
commands:
2019-11-12 11:50:57 +00:00
- "go test -v -race -db=\"mssql\" -conn_str=\"server=mssql;user id=sa;password=yourStrong(!)Password;database=xorm_test\" -coverprofile=coverage6-1.txt -covermode=atomic"
- "go test -v -race -db=\"mssql\" -conn_str=\"server=mssql;user id=sa;password=yourStrong(!)Password;database=xorm_test\" -cache=true -coverprofile=coverage6-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
services:
2019-11-12 11:50:57 +00:00
- name: mssql
pull: default
2019-11-12 11:50:57 +00:00
image: microsoft/mssql-server-linux:latest
environment:
2019-11-12 11:50:57 +00:00
ACCEPT_EULA: Y
SA_PASSWORD: yourStrong(!)Password
MSSQL_PID: Developer
2019-09-30 12:42:31 +00:00
when:
event:
- push
- tag
- pull_request
2019-11-12 11:50:57 +00:00
---
kind: pipeline
name: go1.10-test-tidb
2019-11-12 12:26:49 +00:00
depends_on:
- go1.10-build
clone:
disable: true
2019-11-12 11:50:57 +00:00
steps:
- name: test-tidb
pull: default
2019-11-12 11:50:57 +00:00
image: golang:1.10
commands:
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(tidb:4000)/xorm_test\" -ignore_select_update=true -coverprofile=coverage7-1.txt -covermode=atomic"
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(tidb:4000)/xorm_test\" -ignore_select_update=true -cache=true -coverprofile=coverage7-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
2019-11-12 11:50:57 +00:00
services:
- name: tidb
pull: default
2019-11-12 11:50:57 +00:00
image: pingcap/tidb:v3.0.3
when:
event:
- push
- tag
- pull_request
---
kind: pipeline
2019-11-12 11:47:15 +00:00
name: go1.13-build
2019-11-12 12:26:49 +00:00
depends_on:
- go1.10-build
clone:
disable: true
steps:
- name: build
pull: default
2019-11-12 11:47:15 +00:00
image: golang:1.13
environment:
GO111MODULE: "on"
GOPROXY: "https://goproxy.cn"
commands:
- go build -v
2019-11-12 11:47:15 +00:00
- go vet ./...
when:
event:
- push
- pull_request
2019-11-12 11:47:15 +00:00
---
kind: pipeline
name: go1.13-test-sqlite
2019-11-12 12:26:49 +00:00
depends_on:
- go1.10-build
clone:
disable: true
2019-11-12 11:47:15 +00:00
steps:
- name: test-sqlite
pull: default
2019-11-12 11:47:15 +00:00
image: golang:1.13
environment:
GO111MODULE: "on"
GOPROXY: "https://goproxy.cn"
commands:
- "go test -v -race -db=\"sqlite3\" -conn_str=\"./test.db\" -coverprofile=coverage1-1.txt -covermode=atomic"
- "go test -v -race -db=\"sqlite3\" -conn_str=\"./test.db\" -cache=true -coverprofile=coverage1-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
2019-11-12 11:47:15 +00:00
---
kind: pipeline
name: go1.13-test-mysql
2019-11-12 12:26:49 +00:00
depends_on:
- go1.10-build
clone:
disable: true
2019-11-12 11:47:15 +00:00
steps:
- name: test-mysql
pull: default
2019-11-12 11:47:15 +00:00
image: golang:1.13
environment:
GO111MODULE: "on"
GOPROXY: "https://goproxy.cn"
commands:
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(mysql)/xorm_test\" -coverprofile=coverage2-1.txt -covermode=atomic"
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(mysql)/xorm_test\" -cache=true -coverprofile=coverage2-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
- name: test-mysql-utf8mb4
pull: default
2019-11-12 11:47:15 +00:00
image: golang:1.13
environment:
GO111MODULE: "on"
GOPROXY: "https://goproxy.cn"
commands:
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(mysql)/xorm_test?charset=utf8mb4\" -coverprofile=coverage2.1-1.txt -covermode=atomic"
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(mysql)/xorm_test?charset=utf8mb4\" -cache=true -coverprofile=coverage2.1-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
- name: test-mymysql
pull: default
2019-11-12 11:47:15 +00:00
image: golang:1.13
environment:
GO111MODULE: "on"
GOPROXY: "https://goproxy.cn"
commands:
- "go test -v -race -db=\"mymysql\" -conn_str=\"tcp:mysql:3306*xorm_test/root/\" -coverprofile=coverage3-1.txt -covermode=atomic"
- "go test -v -race -db=\"mymysql\" -conn_str=\"tcp:mysql:3306*xorm_test/root/\" -cache=true -coverprofile=coverage3-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
services:
- name: mysql
pull: default
image: mysql:5.7
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: xorm_test
when:
event:
- push
- tag
- pull_request
---
kind: pipeline
2019-11-12 11:47:15 +00:00
name: go1.13-test-postgres
2019-11-12 12:26:49 +00:00
depends_on:
- go1.10-build
clone:
disable: true
steps:
- name: test-postgres
pull: default
2019-11-12 11:47:15 +00:00
image: golang:1.13
environment:
GO111MODULE: "on"
GOPROXY: "https://goproxy.cn"
commands:
- "go test -v -race -db=\"postgres\" -conn_str=\"postgres://postgres:@pgsql/xorm_test?sslmode=disable\" -coverprofile=coverage4-1.txt -covermode=atomic"
- "go test -v -race -db=\"postgres\" -conn_str=\"postgres://postgres:@pgsql/xorm_test?sslmode=disable\" -cache=true -coverprofile=coverage4-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
- name: test-postgres-schema
pull: default
2019-11-12 11:47:15 +00:00
image: golang:1.13
environment:
GO111MODULE: "on"
GOPROXY: "https://goproxy.cn"
commands:
- "go test -v -race -db=\"postgres\" -conn_str=\"postgres://postgres:@pgsql/xorm_test?sslmode=disable\" -schema=xorm -coverprofile=coverage5-1.txt -covermode=atomic"
- "go test -v -race -db=\"postgres\" -conn_str=\"postgres://postgres:@pgsql/xorm_test?sslmode=disable\" -schema=xorm -cache=true -coverprofile=coverage5-2.txt -covermode=atomic"
when:
event:
- push
- pull_request
2019-09-26 03:01:55 +00:00
services:
- name: pgsql
pull: default
image: postgres:9.5
environment:
POSTGRES_DB: xorm_test
POSTGRES_USER: postgres
when:
event:
- push
- tag
- pull_request
---
kind: pipeline
2019-11-12 11:47:15 +00:00
name: go1.13-test-mssql
2019-11-12 12:26:49 +00:00
depends_on:
- go1.10-build
clone:
disable: true
2019-09-26 03:01:55 +00:00
steps:
2019-11-12 11:47:15 +00:00
- name: test-mssql
2019-09-26 03:01:55 +00:00
pull: default
image: golang:1.13
environment:
GO111MODULE: "on"
GOPROXY: "https://goproxy.cn"
commands:
2019-11-12 11:47:15 +00:00
- "go test -v -race -db=\"mssql\" -conn_str=\"server=mssql;user id=sa;password=yourStrong(!)Password;database=xorm_test\" -coverprofile=coverage6-1.txt -covermode=atomic"
- "go test -v -race -db=\"mssql\" -conn_str=\"server=mssql;user id=sa;password=yourStrong(!)Password;database=xorm_test\" -cache=true -coverprofile=coverage6-2.txt -covermode=atomic"
2019-09-26 03:01:55 +00:00
when:
event:
- push
- pull_request
2019-11-12 11:47:15 +00:00
services:
- name: mssql
2019-09-26 03:01:55 +00:00
pull: default
2019-11-12 11:47:15 +00:00
image: microsoft/mssql-server-linux:latest
2019-09-26 03:01:55 +00:00
environment:
2019-11-12 11:47:15 +00:00
ACCEPT_EULA: Y
SA_PASSWORD: yourStrong(!)Password
MSSQL_PID: Developer
2019-09-30 12:42:31 +00:00
when:
event:
- push
2019-11-12 11:47:15 +00:00
- tag
2019-09-30 12:42:31 +00:00
- pull_request
2019-11-12 11:47:15 +00:00
---
kind: pipeline
name: go1.13-test-tidb
2019-11-12 12:26:49 +00:00
depends_on:
- go1.10-build
clone:
disable: true
2019-11-12 11:47:15 +00:00
steps:
2019-09-30 12:42:31 +00:00
- name: test-tidb
pull: default
image: golang:1.13
environment:
GO111MODULE: "on"
GOPROXY: "https://goproxy.cn"
commands:
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(tidb:4000)/xorm_test\" -ignore_select_update=true -coverprofile=coverage7-1.txt -covermode=atomic"
- "go test -v -race -db=\"mysql\" -conn_str=\"root:@tcp(tidb:4000)/xorm_test\" -ignore_select_update=true -cache=true -coverprofile=coverage7-2.txt -covermode=atomic"
- go get github.com/wadey/gocovmerge
- gocovmerge coverage1-1.txt coverage1-2.txt coverage2-1.txt coverage2-2.txt coverage2.1-1.txt coverage2.1-2.txt coverage3-1.txt coverage3-2.txt coverage4-1.txt coverage4-2.txt coverage5-1.txt coverage5-2.txt coverage6-1.txt coverage6-2.txt coverage7-1.txt coverage7-2.txt > coverage.txt
when:
event:
- push
- pull_request
2019-09-30 12:42:31 +00:00
- name: tidb
pull: default
image: pingcap/tidb:v3.0.3
when:
event:
- push
- tag
- pull_request
2019-11-12 11:47:15 +00:00
---
kind: pipeline
name: go1.13-merge_coverage
2019-11-12 12:26:49 +00:00
clone:
disable: true
2019-11-12 11:47:15 +00:00
depends_on:
- go1.13-build
- go1.13-test-sqlite
- go1.13-test-mysql
- go1.13-test-postgres
- go1.13-test-mssql
- go1.13-test-tidb
steps:
- name: merge_coverage
pull: default
2019-11-12 11:47:15 +00:00
image: golang:1.13
environment:
2019-11-12 11:47:15 +00:00
GO111MODULE: "on"
GOPROXY: "https://goproxy.cn"
commands:
- go get github.com/wadey/gocovmerge
- gocovmerge coverage1-1.txt coverage1-2.txt coverage2-1.txt coverage2-2.txt coverage2.1-1.txt coverage2.1-2.txt coverage3-1.txt coverage3-2.txt coverage4-1.txt coverage4-2.txt coverage5-1.txt coverage5-2.txt coverage6-1.txt coverage6-2.txt coverage7-1.txt coverage7-2.txt > coverage.txt
when:
event:
- push
- pull_request