summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build-gluster-org/jobs/python-compliance.yml22
-rw-r--r--build-gluster-org/scripts/python-compliance.sh5
2 files changed, 26 insertions, 1 deletions
diff --git a/build-gluster-org/jobs/python-compliance.yml b/build-gluster-org/jobs/python-compliance.yml
index 5b20bf2..9cf030f 100644
--- a/build-gluster-org/jobs/python-compliance.yml
+++ b/build-gluster-org/jobs/python-compliance.yml
@@ -8,6 +8,28 @@
scm:
- glusterfs
+ triggers:
+ - gerrit:
+ trigger-on:
+ - patchset-created-event:
+ exclude-drafts: false
+ exclude-trivial-rebase: false
+ exclude-no-code-change: false
+ - draft-published-event
+ - comment-added-contains-event:
+ comment-contains-value: "recheck smoke"
+ server-name: review.gluster.org_for-smoke-jobs
+ skip-vote:
+ failed: true
+ unstable: true
+ notbuilt: true
+ projects:
+ - project-compare-type: 'PLAIN'
+ project-pattern: 'glusterfs'
+ branches:
+ - branch-compare-type: 'ANT'
+ branch-pattern: '**'
+
properties:
- discard-after-x:
x: 10
diff --git a/build-gluster-org/scripts/python-compliance.sh b/build-gluster-org/scripts/python-compliance.sh
index 532170c..875ba67 100644
--- a/build-gluster-org/scripts/python-compliance.sh
+++ b/build-gluster-org/scripts/python-compliance.sh
@@ -1,4 +1,7 @@
#!/usr/bin/bash
+./autogen.sh
+./configure --disable-bd-xlator --enable-debug --enable-gnfs --silent
grep -rnl '#!/usr/bin/python' | xargs pylint-3 --py3k
find . -name '*.py' | xargs pylint-3 --py3k
-find . -name '*.in' | xargs file | grep 'Python' | awk '{print $1}' | cut -d: -f 1 | xargs pylint-3 --py3k
+find . -name '*.py' | xargs python2 /opt/qa/python_compliance.py
+find . -name '*.py' | xargs python3 /opt/qa/python_compliance.py