You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 7, 2021. It is now read-only.
This repository is currently being migrated. It's locked while the migration is in progress.
Copy file name to clipboardExpand all lines: .drone.yml
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,14 @@ pipeline:
82
82
when:
83
83
event: [ push, pull_request ]
84
84
85
+
test-mysql-utf8mb4:
86
+
image: golang:${GO_VERSION}
87
+
commands:
88
+
- go test -v -race -db="mysql" -conn_str="root:@tcp(mysql)/xorm_test?charset=utf8mb4" -coverprofile=coverage2.1-1.txt -covermode=atomic
89
+
- go test -v -race -db="mysql" -conn_str="root:@tcp(mysql)/xorm_test?charset=utf8mb4" -cache=true -coverprofile=coverage2.1-2.txt -covermode=atomic
90
+
when:
91
+
event: [ push, pull_request ]
92
+
85
93
test-mymysql:
86
94
image: golang:${GO_VERSION}
87
95
commands:
@@ -103,7 +111,7 @@ pipeline:
103
111
commands:
104
112
- go test -v -race -db="postgres" -conn_str="postgres://postgres:@pgsql/xorm_test?sslmode=disable" -schema=xorm -coverprofile=coverage5-1.txt -covermode=atomic
105
113
- 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
0 commit comments