summaryrefslogtreecommitdiffstats
path: root/.drone.jsonnet
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-01-05 07:29:59 +0100
committerJoas Schilling <coding@schilljs.com>2023-01-19 08:26:25 +0100
commitbc54fe508f7903b3da96773857597464ebd96937 (patch)
treeea162241e2510c69a6a12ce5dffce3d7db246f9a /.drone.jsonnet
parent30b61e9c8c0d654ae180afc00cb27022266ed042 (diff)
chore(CI): Run postgres integration tests by default as they are faster and break more often
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 aee76528b..86b7f849e 100644
--- a/.drone.jsonnet
+++ b/.drone.jsonnet
@@ -47,7 +47,7 @@ local Pipeline(test_set, database, services) = {
"stable*"
],
event: (
- if database == "mysql" then ["pull_request", "push"] else ["push"]
+ if database == "pgsql" then ["pull_request", "push"] else ["push"]
)
}
};