2019-08-27 04:17:23 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-01-20 16:45:14 +01:00
|
|
|
name: testing
|
2019-09-29 14:52:39 +02:00
|
|
|
steps:
|
2021-05-14 21:17:06 +02:00
|
|
|
- name: restore-cache
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
restore: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
2020-01-20 16:45:14 +01:00
|
|
|
- name: test-vet
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2019-09-29 14:52:39 +02:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
2021-05-14 21:17:06 +02:00
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
2019-09-29 14:52:39 +02:00
|
|
|
commands:
|
2020-06-15 22:46:01 +02:00
|
|
|
- make vet
|
2020-09-03 03:58:04 +02:00
|
|
|
- make fmt-check
|
2021-05-14 21:17:06 +02:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
2019-09-29 14:52:39 +02:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
2021-05-14 21:17:06 +02:00
|
|
|
- name: rebuild-cache
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
pull: true
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
rebuild: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
temp: {}
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test-sqlite
|
|
|
|
depends_on:
|
|
|
|
- testing
|
|
|
|
steps:
|
|
|
|
- name: restore-cache
|
|
|
|
image: meltwater/drone-cache:dev
|
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
restore: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: test-sqlite3
|
|
|
|
image: golang:1.15
|
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
|
|
|
commands:
|
|
|
|
- make test-sqlite3
|
|
|
|
- TEST_CACHE_ENABLE=true make test-sqlite3
|
|
|
|
- TEST_QUOTE_POLICY=reserved make test-sqlite3
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
2019-09-29 14:52:39 +02:00
|
|
|
- name: test-sqlite
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2019-09-29 14:52:39 +02:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
2021-05-14 21:17:06 +02:00
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
2019-09-29 14:52:39 +02:00
|
|
|
commands:
|
2020-03-22 16:12:55 +01:00
|
|
|
- make test-sqlite
|
|
|
|
- TEST_CACHE_ENABLE=true make test-sqlite
|
|
|
|
- TEST_QUOTE_POLICY=reserved make test-sqlite
|
2021-05-14 21:17:06 +02:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: rebuild-cache
|
|
|
|
image: meltwater/drone-cache:dev
|
|
|
|
pull: true
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
rebuild: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
temp: {}
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test-mysql
|
|
|
|
depends_on:
|
|
|
|
- testing
|
|
|
|
steps:
|
|
|
|
- name: restore-cache
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
restore: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
2019-09-29 14:52:39 +02:00
|
|
|
|
|
|
|
- name: test-mysql
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2019-09-29 14:52:39 +02:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
2021-05-14 21:17:06 +02:00
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
2020-03-22 16:12:55 +01:00
|
|
|
TEST_MYSQL_HOST: mysql
|
|
|
|
TEST_MYSQL_CHARSET: utf8
|
|
|
|
TEST_MYSQL_DBNAME: xorm_test
|
|
|
|
TEST_MYSQL_USERNAME: root
|
|
|
|
TEST_MYSQL_PASSWORD:
|
|
|
|
commands:
|
2021-05-14 21:17:06 +02:00
|
|
|
- make test
|
2020-03-22 16:12:55 +01:00
|
|
|
- make test-mysql
|
|
|
|
- TEST_CACHE_ENABLE=true make test-mysql
|
|
|
|
- TEST_QUOTE_POLICY=reserved make test-mysql
|
2021-05-14 21:17:06 +02:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
2019-09-29 14:52:39 +02:00
|
|
|
- name: test-mysql-utf8mb4
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2019-12-18 14:07:36 +01:00
|
|
|
depends_on:
|
2020-03-22 16:12:55 +01:00
|
|
|
- test-mysql
|
2019-09-29 14:52:39 +02:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
2021-05-14 21:17:06 +02:00
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
2020-03-22 16:12:55 +01:00
|
|
|
TEST_MYSQL_HOST: mysql
|
|
|
|
TEST_MYSQL_CHARSET: utf8mb4
|
|
|
|
TEST_MYSQL_DBNAME: xorm_test
|
|
|
|
TEST_MYSQL_USERNAME: root
|
|
|
|
TEST_MYSQL_PASSWORD:
|
2019-09-29 14:52:39 +02:00
|
|
|
commands:
|
2020-03-22 16:12:55 +01:00
|
|
|
- make test-mysql
|
|
|
|
- TEST_CACHE_ENABLE=true make test-mysql
|
|
|
|
- TEST_QUOTE_POLICY=reserved make test-mysql
|
2021-05-14 21:17:06 +02:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
2019-09-29 14:52:39 +02:00
|
|
|
|
|
|
|
- name: test-mymysql
|
|
|
|
pull: default
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2019-12-18 14:07:36 +01:00
|
|
|
depends_on:
|
|
|
|
- test-mysql-utf8mb4
|
2019-09-29 14:52:39 +02:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
2021-05-14 21:17:06 +02:00
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
2020-03-22 16:12:55 +01:00
|
|
|
TEST_MYSQL_HOST: mysql:3306
|
|
|
|
TEST_MYSQL_DBNAME: xorm_test
|
|
|
|
TEST_MYSQL_USERNAME: root
|
|
|
|
TEST_MYSQL_PASSWORD:
|
2019-09-29 14:52:39 +02:00
|
|
|
commands:
|
2020-03-22 16:12:55 +01:00
|
|
|
- make test-mymysql
|
|
|
|
- TEST_CACHE_ENABLE=true make test-mymysql
|
|
|
|
- TEST_QUOTE_POLICY=reserved make test-mymysql
|
2021-05-14 21:17:06 +02:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: rebuild-cache
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
depends_on:
|
|
|
|
- test-mysql
|
|
|
|
- test-mysql-utf8mb4
|
|
|
|
- test-mymysql
|
|
|
|
pull: true
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
rebuild: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
temp: {}
|
|
|
|
|
|
|
|
services:
|
|
|
|
- name: mysql
|
|
|
|
pull: default
|
|
|
|
image: mysql:5.7
|
|
|
|
environment:
|
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
|
|
|
MYSQL_DATABASE: xorm_test
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test-mysql8
|
|
|
|
depends_on:
|
|
|
|
- test-mysql
|
|
|
|
- test-sqlite
|
|
|
|
steps:
|
|
|
|
- name: restore-cache
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
restore: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: test-mysql8
|
|
|
|
image: golang:1.15
|
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
|
|
|
TEST_MYSQL_HOST: mysql8
|
|
|
|
TEST_MYSQL_CHARSET: utf8mb4
|
|
|
|
TEST_MYSQL_DBNAME: xorm_test
|
|
|
|
TEST_MYSQL_USERNAME: root
|
|
|
|
TEST_MYSQL_PASSWORD:
|
|
|
|
commands:
|
|
|
|
- make test-mysql
|
|
|
|
- TEST_CACHE_ENABLE=true make test-mysql
|
|
|
|
- TEST_QUOTE_POLICY=reserved make test-mysql
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: rebuild-cache
|
|
|
|
image: meltwater/drone-cache:dev
|
|
|
|
pull: true
|
|
|
|
depends_on:
|
|
|
|
- test-mysql8
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
rebuild: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
temp: {}
|
|
|
|
|
|
|
|
services:
|
|
|
|
- name: mysql8
|
|
|
|
pull: default
|
|
|
|
image: mysql:8.0
|
|
|
|
environment:
|
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
|
|
|
MYSQL_DATABASE: xorm_test
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test-mariadb
|
|
|
|
depends_on:
|
|
|
|
- test-mysql8
|
|
|
|
steps:
|
|
|
|
- name: restore-cache
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
restore: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
2019-09-29 14:52:39 +02:00
|
|
|
|
2020-09-03 03:58:04 +02:00
|
|
|
- name: test-mariadb
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2020-09-03 03:58:04 +02:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
2021-05-14 21:17:06 +02:00
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
2020-09-03 03:58:04 +02:00
|
|
|
TEST_MYSQL_HOST: mariadb
|
|
|
|
TEST_MYSQL_CHARSET: utf8mb4
|
|
|
|
TEST_MYSQL_DBNAME: xorm_test
|
|
|
|
TEST_MYSQL_USERNAME: root
|
|
|
|
TEST_MYSQL_PASSWORD:
|
|
|
|
commands:
|
|
|
|
- make test-mysql
|
|
|
|
- TEST_CACHE_ENABLE=true make test-mysql
|
|
|
|
- TEST_QUOTE_POLICY=reserved make test-mysql
|
2021-05-14 21:17:06 +02:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: rebuild-cache
|
|
|
|
image: meltwater/drone-cache:dev
|
|
|
|
depends_on:
|
|
|
|
- test-mariadb
|
|
|
|
pull: true
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
rebuild: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
temp: {}
|
|
|
|
|
|
|
|
services:
|
|
|
|
- name: mariadb
|
|
|
|
pull: default
|
|
|
|
image: mariadb:10.4
|
|
|
|
environment:
|
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
|
|
|
MYSQL_DATABASE: xorm_test
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test-postgres
|
|
|
|
depends_on:
|
|
|
|
- test-mariadb
|
|
|
|
steps:
|
|
|
|
- name: restore-cache
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
restore: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
2020-09-03 03:58:04 +02:00
|
|
|
|
2019-09-29 14:52:39 +02:00
|
|
|
- name: test-postgres
|
|
|
|
pull: default
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2019-09-29 14:52:39 +02:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
2021-05-14 21:17:06 +02:00
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
2020-03-22 16:12:55 +01:00
|
|
|
TEST_PGSQL_HOST: pgsql
|
|
|
|
TEST_PGSQL_DBNAME: xorm_test
|
|
|
|
TEST_PGSQL_USERNAME: postgres
|
|
|
|
TEST_PGSQL_PASSWORD: postgres
|
2019-09-29 14:52:39 +02:00
|
|
|
commands:
|
2020-03-22 16:12:55 +01:00
|
|
|
- make test-postgres
|
|
|
|
- TEST_CACHE_ENABLE=true make test-postgres
|
|
|
|
- TEST_QUOTE_POLICY=reserved make test-postgres
|
2021-05-14 21:17:06 +02:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
2019-09-29 14:52:39 +02:00
|
|
|
|
|
|
|
- name: test-postgres-schema
|
|
|
|
pull: default
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2020-03-22 16:12:55 +01:00
|
|
|
depends_on:
|
|
|
|
- test-postgres
|
2019-09-29 14:52:39 +02:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
2021-05-14 21:17:06 +02:00
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
2020-03-22 16:12:55 +01:00
|
|
|
TEST_PGSQL_HOST: pgsql
|
|
|
|
TEST_PGSQL_SCHEMA: xorm
|
|
|
|
TEST_PGSQL_DBNAME: xorm_test
|
|
|
|
TEST_PGSQL_USERNAME: postgres
|
|
|
|
TEST_PGSQL_PASSWORD: postgres
|
2019-09-29 14:52:39 +02:00
|
|
|
commands:
|
2020-03-22 16:12:55 +01:00
|
|
|
- make test-postgres
|
|
|
|
- TEST_CACHE_ENABLE=true make test-postgres
|
|
|
|
- TEST_QUOTE_POLICY=reserved make test-postgres
|
2021-05-14 21:17:06 +02:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: rebuild-cache
|
|
|
|
image: meltwater/drone-cache:dev
|
|
|
|
pull: true
|
|
|
|
depends_on:
|
|
|
|
- test-postgres-schema
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
rebuild: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
temp: {}
|
|
|
|
|
|
|
|
services:
|
|
|
|
- name: pgsql
|
|
|
|
pull: default
|
|
|
|
image: postgres:9.5
|
|
|
|
environment:
|
|
|
|
POSTGRES_DB: xorm_test
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test-mssql
|
|
|
|
depends_on:
|
|
|
|
- test-postgres
|
|
|
|
steps:
|
|
|
|
- name: restore-cache
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
restore: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
2019-09-29 14:52:39 +02:00
|
|
|
|
|
|
|
- name: test-mssql
|
|
|
|
pull: default
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2019-09-29 14:52:39 +02:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
2021-05-14 21:17:06 +02:00
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
2020-03-22 16:12:55 +01:00
|
|
|
TEST_MSSQL_HOST: mssql
|
|
|
|
TEST_MSSQL_DBNAME: xorm_test
|
|
|
|
TEST_MSSQL_USERNAME: sa
|
|
|
|
TEST_MSSQL_PASSWORD: "yourStrong(!)Password"
|
2019-09-29 14:52:39 +02:00
|
|
|
commands:
|
2020-03-22 16:12:55 +01:00
|
|
|
- make test-mssql
|
|
|
|
- TEST_CACHE_ENABLE=true make test-mssql
|
|
|
|
- TEST_QUOTE_POLICY=reserved make test-mssql
|
2020-07-21 14:28:27 +02:00
|
|
|
- TEST_MSSQL_DEFAULT_VARCHAR=NVARCHAR TEST_MSSQL_DEFAULT_CHAR=NCHAR make test-mssql
|
2021-05-14 21:17:06 +02:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: rebuild-cache
|
|
|
|
image: meltwater/drone-cache:dev
|
|
|
|
pull: true
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
rebuild: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
temp: {}
|
|
|
|
|
|
|
|
services:
|
|
|
|
- name: mssql
|
|
|
|
pull: default
|
|
|
|
image: microsoft/mssql-server-linux:latest
|
|
|
|
environment:
|
|
|
|
ACCEPT_EULA: Y
|
|
|
|
SA_PASSWORD: yourStrong(!)Password
|
|
|
|
MSSQL_PID: Developer
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test-tidb
|
|
|
|
depends_on:
|
|
|
|
- test-mssql
|
|
|
|
steps:
|
|
|
|
- name: restore-cache
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
restore: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
2019-10-02 22:47:20 +02:00
|
|
|
|
|
|
|
- name: test-tidb
|
|
|
|
pull: default
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2019-10-02 22:47:20 +02:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
2021-05-14 21:17:06 +02:00
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
2020-03-22 16:12:55 +01:00
|
|
|
TEST_TIDB_HOST: "tidb:4000"
|
|
|
|
TEST_TIDB_DBNAME: xorm_test
|
|
|
|
TEST_TIDB_USERNAME: root
|
|
|
|
TEST_TIDB_PASSWORD:
|
|
|
|
commands:
|
|
|
|
- make test-tidb
|
|
|
|
- TEST_CACHE_ENABLE=true make test-tidb
|
|
|
|
- TEST_QUOTE_POLICY=reserved make test-tidb
|
2021-05-14 21:17:06 +02:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: rebuild-cache
|
|
|
|
image: meltwater/drone-cache:dev
|
|
|
|
pull: true
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
rebuild: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
temp: {}
|
|
|
|
|
|
|
|
services:
|
|
|
|
- name: tidb
|
|
|
|
pull: default
|
|
|
|
image: pingcap/tidb:v3.0.3
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test-cockroach
|
|
|
|
depends_on:
|
|
|
|
- test-tidb
|
|
|
|
steps:
|
|
|
|
- name: restore-cache
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
restore: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
2020-03-22 16:12:55 +01:00
|
|
|
|
|
|
|
- name: test-cockroach
|
|
|
|
pull: default
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2020-03-22 16:12:55 +01:00
|
|
|
environment:
|
|
|
|
GO111MODULE: "on"
|
2021-05-14 21:17:06 +02:00
|
|
|
GOPROXY: "https://goproxy.io"
|
|
|
|
CGO_ENABLED: 1
|
|
|
|
GOMODCACHE: '/drone/src/pkg.mod'
|
|
|
|
GOCACHE: '/drone/src/pkg.build'
|
2020-03-22 16:12:55 +01:00
|
|
|
TEST_COCKROACH_HOST: "cockroach:26257"
|
|
|
|
TEST_COCKROACH_DBNAME: xorm_test
|
|
|
|
TEST_COCKROACH_USERNAME: root
|
|
|
|
TEST_COCKROACH_PASSWORD:
|
2019-10-02 22:47:20 +02:00
|
|
|
commands:
|
2020-03-22 16:12:55 +01:00
|
|
|
- sleep 10
|
|
|
|
- make test-cockroach
|
|
|
|
- TEST_CACHE_ENABLE=true make test-cockroach
|
2021-05-14 21:17:06 +02:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
2019-12-18 14:07:36 +01:00
|
|
|
|
2021-05-14 21:17:06 +02:00
|
|
|
- name: rebuild-cache
|
|
|
|
image: meltwater/drone-cache:dev
|
|
|
|
pull: true
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
rebuild: true
|
|
|
|
cache_key: '{{ .Repo.Name }}_{{ checksum "go.mod" }}_{{ checksum "go.sum" }}_{{ arch }}_{{ os }}'
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/go"
|
|
|
|
mount:
|
|
|
|
- pkg.mod
|
|
|
|
- pkg.build
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
temp: {}
|
|
|
|
|
|
|
|
services:
|
|
|
|
- name: cockroach
|
2019-12-18 14:07:36 +01:00
|
|
|
pull: default
|
2021-05-14 21:17:06 +02:00
|
|
|
image: cockroachdb/cockroach:v19.2.4
|
|
|
|
commands:
|
|
|
|
- /cockroach/cockroach start --insecure
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: merge_coverage
|
|
|
|
depends_on:
|
|
|
|
- testing
|
2019-12-18 14:07:36 +01:00
|
|
|
- test-sqlite
|
|
|
|
- test-mysql
|
2020-03-22 16:12:55 +01:00
|
|
|
- test-mysql8
|
2021-05-14 21:17:06 +02:00
|
|
|
- test-mariadb
|
2019-12-18 14:07:36 +01:00
|
|
|
- test-postgres
|
|
|
|
- test-mssql
|
|
|
|
- test-tidb
|
2020-03-22 16:12:55 +01:00
|
|
|
- test-cockroach
|
2021-05-14 21:17:06 +02:00
|
|
|
steps:
|
|
|
|
- name: merge_coverage
|
2019-09-24 15:22:39 +02:00
|
|
|
pull: default
|
2021-05-14 21:17:06 +02:00
|
|
|
image: golang:1.15
|
2019-09-24 15:22:39 +02:00
|
|
|
environment:
|
2021-05-14 21:17:06 +02:00
|
|
|
GO111MODULE: "on"
|
|
|
|
GOPROXY: "https://goproxy.io"
|
2020-03-22 16:12:55 +01:00
|
|
|
commands:
|
2021-05-14 21:17:06 +02:00
|
|
|
- make coverage
|
2020-03-22 16:12:55 +01:00
|
|
|
when:
|
2021-05-14 21:17:06 +02:00
|
|
|
branch:
|
|
|
|
- master
|
2020-03-22 16:12:55 +01:00
|
|
|
event:
|
2021-05-14 21:17:06 +02:00
|
|
|
- push
|
|
|
|
- pull_request
|