summaryrefslogtreecommitdiffstats
path: root/.drone.jsonnet
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2023-10-16 19:50:56 +0200
committerAndrew Lewis <nerf@judo.za.org>2023-10-17 14:25:45 +0200
commit80b0d44da4addc96bed4eeecfc01b4e5cc36278f (patch)
tree0b61b44d25a6257859f0bdc2b4e75fd85a7c0ec2 /.drone.jsonnet
parent508fe8a626e649233fcbe57e829a78f23ceb364c (diff)
downloadrspamd-80b0d44da4addc96bed4eeecfc01b4e5cc36278f.tar.gz
rspamd-80b0d44da4addc96bed4eeecfc01b4e5cc36278f.zip
[Test] Banish luacheck from functional tests
- Use luacheck from GitLab
Diffstat (limited to '.drone.jsonnet')
-rw-r--r--.drone.jsonnet8
1 files changed, 8 insertions, 0 deletions
diff --git a/.drone.jsonnet b/.drone.jsonnet
index 694a63ef2..ef0f56c61 100644
--- a/.drone.jsonnet
+++ b/.drone.jsonnet
@@ -287,6 +287,14 @@ local noarch_pipeline = {
'./node_modules/.bin/stylelint ./**/*.css ./**/*.html ./**/*.js',
],
},
+ {
+ name: 'luacheck',
+ image: 'pipelinecomponents/luacheck',
+ pull: 'if-not-exists',
+ commands: [
+ 'luacheck -q --no-color .',
+ ],
+ },
],
} + default_trigger + docker_pipeline;