diff options
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/csit/csit-vpp-pylint.yaml | 6 | ||||
-rw-r--r-- | jjb/csit/include-raw-csit-pylint.sh | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/jjb/csit/csit-vpp-pylint.yaml b/jjb/csit/csit-vpp-pylint.yaml index 627cc6e90..326f206e6 100644 --- a/jjb/csit/csit-vpp-pylint.yaml +++ b/jjb/csit/csit-vpp-pylint.yaml @@ -2,13 +2,13 @@ name: csit-validate jobs: - - 'csit-vpp-validate-pylint' + - 'csit-validate-pylint' project: 'csit' branch: 'master' - job-template: - name: 'csit-vpp-validate-pylint' + name: 'csit-validate-pylint' project-type: freestyle node: verify @@ -57,4 +57,4 @@ publishers: - archive-artifacts: - artifacts: 'build-root/**' + artifacts: 'pylint.log' diff --git a/jjb/csit/include-raw-csit-pylint.sh b/jjb/csit/include-raw-csit-pylint.sh index e68088481..c0cfe6c22 100644 --- a/jjb/csit/include-raw-csit-pylint.sh +++ b/jjb/csit/include-raw-csit-pylint.sh @@ -1,5 +1,6 @@ #!/bin/bash +sudo apt-get install -y --force-yes pylint find resources -name \*.py | xargs pylint --rcfile=pylint.cfg > pylint.log || true # vim: ts=4 ts=4 sts=4 et : |