summaryrefslogtreecommitdiffstats
path: root/.drone.jsonnet
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-03-21 11:20:15 +0100
committerJoas Schilling <coding@schilljs.com>2022-03-22 11:55:36 +0100
commit8b9fbbdeb1c5998433dca590675ac36076fe028d (patch)
tree56510cd049255ade50735ef64da2765ad10e493d /.drone.jsonnet
parent9326949982111c1a684d688968d30d33311ec8af (diff)
Run on MySQL as a test
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.drone.jsonnet')
-rw-r--r--.drone.jsonnet2
1 files changed, 1 insertions, 1 deletions
diff --git a/.drone.jsonnet b/.drone.jsonnet
index ee60dc208..ad6f39b32 100644
--- a/.drone.jsonnet
+++ b/.drone.jsonnet
@@ -41,7 +41,7 @@ local Pipeline(test_set, database, services) = {
"stable*"
],
event: (
- if database == "sqlite" then ["pull_request", "push"] else ["push"]
+ if database == "mysql" then ["pull_request", "push"] else ["push"]
)
}
};