2019-08-14 15:46:40 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-01-19 08:21:53 +00:00
|
|
|
name: testing
|
2019-09-26 03:01:55 +00:00
|
|
|
steps:
|
2020-01-19 08:23:40 +00:00
|
|
|
- name: test-vet
|
2020-01-19 08:21:53 +00:00
|
|
|
image: golang:1.12
|
2019-09-26 03:01:55 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
|
|
|
commands:
|
2020-01-19 08:28:52 +00:00
|
|
|
- go vet
|
2019-09-26 03:01:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-sqlite
|
2020-01-19 08:21:53 +00:00
|
|
|
image: golang:1.12
|
2019-09-26 03:01:55 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
2020-02-21 01:38:47 +00:00
|
|
|
TEST_CACHE_ENABLE: false
|
|
|
|
commands:
|
|
|
|
- make test-sqlite
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-sqlite-cache
|
|
|
|
image: golang:1.12
|
|
|
|
depends_on:
|
|
|
|
- test-sqlite
|
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
|
|
|
TEST_CACHE_ENABLE: true
|
2019-09-26 03:01:55 +00:00
|
|
|
commands:
|
2020-02-21 01:38:47 +00:00
|
|
|
- make test-sqlite
|
2019-09-26 03:01:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-mysql
|
2020-01-19 08:21:53 +00:00
|
|
|
image: golang:1.12
|
2019-09-26 03:01:55 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
2020-02-21 01:38:47 +00:00
|
|
|
TEST_MYSQL_HOST: mysql
|
|
|
|
TEST_MYSQL_CHARSET: utf8
|
|
|
|
TEST_MYSQL_DBNAME: xorm_test
|
|
|
|
TEST_MYSQL_USERNAME: root
|
|
|
|
TEST_MYSQL_PASSWORD:
|
|
|
|
TEST_CACHE_ENABLE: false
|
2019-09-26 03:01:55 +00:00
|
|
|
commands:
|
2020-02-21 01:38:47 +00:00
|
|
|
- make test-mysql
|
2019-09-26 03:01:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
2020-02-21 01:38:47 +00:00
|
|
|
- name: test-mysql-cache
|
2020-01-19 08:21:53 +00:00
|
|
|
image: golang:1.12
|
2019-11-13 05:54:10 +00:00
|
|
|
depends_on:
|
|
|
|
- test-mysql
|
2019-09-26 03:01:55 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
2020-02-21 01:38:47 +00:00
|
|
|
TEST_MYSQL_HOST: mysql
|
|
|
|
TEST_MYSQL_CHARSET: utf8
|
|
|
|
TEST_MYSQL_DBNAME: xorm_test
|
|
|
|
TEST_MYSQL_USERNAME: root
|
|
|
|
TEST_MYSQL_PASSWORD:
|
|
|
|
TEST_CACHE_ENABLE: true
|
2019-09-26 03:01:55 +00:00
|
|
|
commands:
|
2020-02-21 01:38:47 +00:00
|
|
|
- make test-mysql
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-mysql-utf8mb4
|
|
|
|
image: golang:1.12
|
|
|
|
depends_on:
|
|
|
|
- test-mysql-cache
|
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
|
|
|
TEST_MYSQL_HOST: mysql
|
|
|
|
TEST_MYSQL_CHARSET: utf8mb4
|
|
|
|
TEST_MYSQL_DBNAME: xorm_test
|
|
|
|
TEST_MYSQL_USERNAME: root
|
|
|
|
TEST_MYSQL_PASSWORD:
|
|
|
|
TEST_CACHE_ENABLE: false
|
|
|
|
commands:
|
|
|
|
- make test-mysql
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-mysql-utf8mb4-cache
|
|
|
|
image: golang:1.12
|
|
|
|
depends_on:
|
|
|
|
- test-mysql-utf8mb4
|
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
|
|
|
TEST_MYSQL_HOST: mysql
|
|
|
|
TEST_MYSQL_CHARSET: utf8mb4
|
|
|
|
TEST_MYSQL_DBNAME: xorm_test
|
|
|
|
TEST_MYSQL_USERNAME: root
|
|
|
|
TEST_MYSQL_PASSWORD:
|
|
|
|
TEST_CACHE_ENABLE: true
|
|
|
|
commands:
|
|
|
|
- make test-mysql
|
2019-09-26 03:01:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-mymysql
|
|
|
|
pull: default
|
2020-01-19 08:21:53 +00:00
|
|
|
image: golang:1.12
|
2019-11-13 05:54:10 +00:00
|
|
|
depends_on:
|
2020-02-21 01:38:47 +00:00
|
|
|
- test-mysql-utf8mb4-cache
|
2019-09-26 03:01:55 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
2020-02-21 01:38:47 +00:00
|
|
|
TEST_MYSQL_HOST: mysql:3306
|
|
|
|
TEST_MYSQL_DBNAME: xorm_test
|
|
|
|
TEST_MYSQL_USERNAME: root
|
|
|
|
TEST_MYSQL_PASSWORD:
|
|
|
|
TEST_CACHE_ENABLE: false
|
2019-09-26 03:01:55 +00:00
|
|
|
commands:
|
2020-02-21 01:38:47 +00:00
|
|
|
- make test-mymysql
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-mymysql-cache
|
|
|
|
pull: default
|
|
|
|
image: golang:1.12
|
|
|
|
depends_on:
|
|
|
|
- test-mymysql
|
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
|
|
|
TEST_MYSQL_HOST: mysql:3306
|
|
|
|
TEST_MYSQL_DBNAME: xorm_test
|
|
|
|
TEST_MYSQL_USERNAME: root
|
|
|
|
TEST_MYSQL_PASSWORD:
|
|
|
|
TEST_CACHE_ENABLE: true
|
|
|
|
commands:
|
|
|
|
- make test-mymysql
|
2019-09-26 03:01:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-postgres
|
|
|
|
pull: default
|
2020-01-19 08:21:53 +00:00
|
|
|
image: golang:1.12
|
2019-09-26 03:01:55 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
2020-02-21 01:38:47 +00:00
|
|
|
TEST_PGSQL_HOST: pgsql
|
|
|
|
TEST_PGSQL_DBNAME: xorm_test
|
|
|
|
TEST_PGSQL_USERNAME: postgres
|
|
|
|
TEST_PGSQL_PASSWORD: postgres
|
|
|
|
TEST_CACHE_ENABLE: false
|
2019-09-26 03:01:55 +00:00
|
|
|
commands:
|
2020-02-21 01:38:47 +00:00
|
|
|
- make test-postgres
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-postgres-cache
|
|
|
|
pull: default
|
|
|
|
image: golang:1.12
|
|
|
|
depends_on:
|
|
|
|
- test-postgres
|
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
|
|
|
TEST_PGSQL_HOST: pgsql
|
|
|
|
TEST_PGSQL_DBNAME: xorm_test
|
|
|
|
TEST_PGSQL_USERNAME: postgres
|
|
|
|
TEST_PGSQL_PASSWORD: postgres
|
|
|
|
TEST_CACHE_ENABLE: true
|
|
|
|
commands:
|
|
|
|
- make test-postgres
|
2019-09-26 03:01:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-postgres-schema
|
|
|
|
pull: default
|
2020-01-19 08:21:53 +00:00
|
|
|
image: golang:1.12
|
2019-09-26 03:01:55 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
2020-02-21 01:38:47 +00:00
|
|
|
TEST_PGSQL_HOST: pgsql
|
|
|
|
TEST_PGSQL_SCHEMA: xorm
|
|
|
|
TEST_PGSQL_DBNAME: xorm_test
|
|
|
|
TEST_PGSQL_USERNAME: postgres
|
|
|
|
TEST_PGSQL_PASSWORD: postgres
|
|
|
|
TEST_CACHE_ENABLE: false
|
|
|
|
SCHEMA: xorm
|
|
|
|
commands:
|
|
|
|
- make test-postgres
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-postgres-schema-cache
|
|
|
|
pull: default
|
|
|
|
image: golang:1.12
|
|
|
|
depends_on:
|
|
|
|
- test-postgres-schema
|
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
|
|
|
TEST_PGSQL_HOST: pgsql
|
|
|
|
TEST_PGSQL_SCHEMA: xorm
|
|
|
|
TEST_PGSQL_DBNAME: xorm_test
|
|
|
|
TEST_PGSQL_USERNAME: postgres
|
|
|
|
TEST_PGSQL_PASSWORD: postgres
|
|
|
|
TEST_CACHE_ENABLE: true
|
|
|
|
SCHEMA: xorm
|
2019-09-26 03:01:55 +00:00
|
|
|
commands:
|
2020-02-21 01:38:47 +00:00
|
|
|
- make test-postgres
|
2019-09-26 03:01:55 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-mssql
|
|
|
|
pull: default
|
2020-01-19 08:21:53 +00:00
|
|
|
image: golang:1.12
|
2019-09-26 03:01:55 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
2020-02-21 01:38:47 +00:00
|
|
|
TEST_MSSQL_HOST: mssql
|
|
|
|
TEST_MSSQL_DBNAME: xorm_test
|
|
|
|
TEST_MSSQL_USERNAME: sa
|
|
|
|
TEST_MSSQL_PASSWORD: "yourStrong(!)Password"
|
|
|
|
TEST_CACHE_ENABLE: false
|
|
|
|
commands:
|
|
|
|
- make test-mssql
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-mssql-cache
|
|
|
|
pull: default
|
|
|
|
image: golang:1.12
|
|
|
|
depends_on:
|
|
|
|
- test-mssql
|
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
|
|
|
TEST_MSSQL_HOST: mssql
|
|
|
|
TEST_MSSQL_DBNAME: xorm_test
|
|
|
|
TEST_MSSQL_USERNAME: sa
|
|
|
|
TEST_MSSQL_PASSWORD: "yourStrong(!)Password"
|
|
|
|
TEST_CACHE_ENABLE: true
|
2019-09-26 03:01:55 +00:00
|
|
|
commands:
|
2020-02-21 01:38:47 +00:00
|
|
|
- make test-mssql
|
2019-09-30 12:42:31 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-tidb
|
|
|
|
pull: default
|
2020-01-19 08:21:53 +00:00
|
|
|
image: golang:1.12
|
2019-09-30 12:42:31 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
2020-02-21 01:38:47 +00:00
|
|
|
TEST_TIDB_HOST: "tidb:4000"
|
|
|
|
TEST_TIDB_DBNAME: xorm_test
|
|
|
|
TEST_TIDB_USERNAME: root
|
|
|
|
TEST_TIDB_PASSWORD:
|
|
|
|
TEST_CACHE_ENABLE: false
|
|
|
|
commands:
|
|
|
|
- make test-tidb
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-tidb-cache
|
|
|
|
pull: default
|
|
|
|
image: golang:1.12
|
|
|
|
depends_on:
|
|
|
|
- test-tidb
|
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
|
|
|
TEST_TIDB_HOST: "tidb:4000"
|
|
|
|
TEST_TIDB_DBNAME: xorm_test
|
|
|
|
TEST_TIDB_USERNAME: root
|
|
|
|
TEST_TIDB_PASSWORD:
|
|
|
|
TEST_CACHE_ENABLE: true
|
2019-09-30 12:42:31 +00:00
|
|
|
commands:
|
2020-02-21 01:38:47 +00:00
|
|
|
- make test-tidb
|
2019-11-13 05:54:10 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: merge_coverage
|
|
|
|
pull: default
|
2020-01-19 08:21:53 +00:00
|
|
|
image: golang:1.12
|
2019-11-13 05:54:10 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.cn"
|
|
|
|
depends_on:
|
2020-01-19 08:23:40 +00:00
|
|
|
- test-vet
|
2019-11-13 05:54:10 +00:00
|
|
|
- test-sqlite
|
2020-02-21 01:38:47 +00:00
|
|
|
- test-sqlite-cache
|
2019-11-13 05:54:10 +00:00
|
|
|
- test-mysql
|
2020-02-21 01:38:47 +00:00
|
|
|
- test-mysql-cache
|
2019-11-13 05:54:10 +00:00
|
|
|
- test-mysql-utf8mb4
|
2020-02-21 01:38:47 +00:00
|
|
|
- test-mysql-utf8mb4-cache
|
2019-11-13 05:54:10 +00:00
|
|
|
- test-mymysql
|
2020-02-21 01:38:47 +00:00
|
|
|
- test-mymysql-cache
|
2019-11-13 05:54:10 +00:00
|
|
|
- test-postgres
|
2020-02-21 01:38:47 +00:00
|
|
|
- test-postgres-cache
|
2019-11-13 05:54:10 +00:00
|
|
|
- test-postgres-schema
|
2020-02-21 01:38:47 +00:00
|
|
|
- test-postgres-schema-cache
|
2019-11-13 05:54:10 +00:00
|
|
|
- test-mssql
|
2020-02-21 01:38:47 +00:00
|
|
|
- test-mssql-cache
|
2019-11-13 05:54:10 +00:00
|
|
|
- test-tidb
|
2020-02-21 01:38:47 +00:00
|
|
|
- test-tidb-cache
|
2019-11-13 05:54:10 +00:00
|
|
|
commands:
|
2020-02-21 01:38:47 +00:00
|
|
|
- make coverage
|
2019-08-14 15:46:40 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
2018-10-08 08:53:36 +00:00
|
|
|
services:
|
2019-11-13 05:54:10 +00:00
|
|
|
|
2019-08-14 15:46:40 +00:00
|
|
|
- name: mysql
|
|
|
|
pull: default
|
|
|
|
image: mysql:5.7
|
|
|
|
environment:
|
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
|
|
|
MYSQL_DATABASE: xorm_test
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: pgsql
|
|
|
|
pull: default
|
|
|
|
image: postgres:9.5
|
|
|
|
environment:
|
|
|
|
POSTGRES_DB: xorm_test
|
|
|
|
POSTGRES_USER: postgres
|
2020-02-20 09:52:49 +00:00
|
|
|
POSTGRES_PASSWORD: postgres
|
2019-09-04 04:33:44 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: mssql
|
|
|
|
pull: default
|
|
|
|
image: microsoft/mssql-server-linux:latest
|
|
|
|
environment:
|
|
|
|
ACCEPT_EULA: Y
|
|
|
|
SA_PASSWORD: yourStrong(!)Password
|
|
|
|
MSSQL_PID: Developer
|
2019-11-13 05:54:10 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: tidb
|
|
|
|
pull: default
|
|
|
|
image: pingcap/tidb:v3.0.3
|
2019-08-14 15:46:40 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
- pull_request
|