summaryrefslogtreecommitdiffstats
path: root/vendor/xorm.io/xorm/.drone.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/xorm.io/xorm/.drone.yml')
-rw-r--r--vendor/xorm.io/xorm/.drone.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/vendor/xorm.io/xorm/.drone.yml b/vendor/xorm.io/xorm/.drone.yml
index 8cf43aa251..300c78410f 100644
--- a/vendor/xorm.io/xorm/.drone.yml
+++ b/vendor/xorm.io/xorm/.drone.yml
@@ -10,6 +10,7 @@ steps:
commands:
- make vet
- make test
+ - make fmt-check
when:
event:
- push
@@ -109,6 +110,25 @@ steps:
- push
- pull_request
+- name: test-mariadb
+ image: golang:1.12
+ environment:
+ GO111MODULE: "on"
+ GOPROXY: "https://goproxy.cn"
+ 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
+ when:
+ event:
+ - push
+ - pull_request
+
- name: test-postgres
pull: default
image: golang:1.12
@@ -258,6 +278,18 @@ services:
- tag
- pull_request
+- name: mariadb
+ pull: default
+ image: mariadb:10.4
+ environment:
+ MYSQL_ALLOW_EMPTY_PASSWORD: yes
+ MYSQL_DATABASE: xorm_test
+ when:
+ event:
+ - push
+ - tag
+ - pull_request
+
- name: pgsql
pull: default
image: postgres:9.5