jjb: lttng-analyses: Remove violations plugin integration
authorMichael Jeanson <mjeanson@efficios.com>
Mon, 14 Sep 2020 14:39:30 +0000 (10:39 -0400)
committerMichael Jeanson <mjeanson@efficios.com>
Mon, 14 Sep 2020 14:39:30 +0000 (10:39 -0400)
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
jobs/lttng-analyses.yaml
scripts/lttng-analyses/pylint.sh

index f79c637841510958858ae0e462906ff49c8bf673..6377c9474e1333934ba0a02ccb6b0a4692ec6fa6 100644 (file)
     publishers:
       - archive:
           artifacts: 'pep8.out,pylint.out'
-      - violations:
-          pep8:
-            pattern: pep8.out
-            min: 10
-            max: 999
-            unstable: 999
-          pylint:
-            pattern: pylint.out
-            min: 10
-            max: 999
-            unstable: 999
       - email-ext:
           recipients: '{obj:email_to}'
           reply-to: ci-notification@lists.lttng.org
index 9475339bba183e3da6e0cfe8da9b6cd6dc6eaef9..4eb9693a9ad627274ed9f99bb35355ac13e7d715 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash -exu
 #
-# Copyright (C) 2015 - Michael Jeanson <mjeanson@efficios.com>
+# Copyright (C) 2020 Michael Jeanson <mjeanson@efficios.com>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -35,15 +35,16 @@ fi
 # Create virtualenv and install necessary packages
 virtualenv --system-site-packages -p $PYTHON3 "$PYENV_HOME"
 
-set +u
+set +ux
+# shellcheck disable=SC1090
 . "$PYENV_HOME/bin/activate"
-set -u
+set -ux
 
 pip install --quiet pylint
 pip install --quiet pep8
 
+
 cd "$SRCDIR"
 
 pep8 lttnganalyses | tee "$WORKSPACE/pep8.out"
-
 pylint -f parseable --ignore="_version.py" --disable=C0111 lttnganalyses | tee "$WORKSPACE/pylint.out"
This page took 0.024156 seconds and 4 git commands to generate.