Add stage around pylint run

Change-Id: I8e58ae867660f9fd32c05606058d2b710a70cc3a
Reviewed-on: https://forge.frm2.tum.de/review/19615
Tested-by: JenkinsCodeReview <bjoern_pedersen@frm2.tum.de>
Reviewed-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de>
Reviewed-by: Bjoern Pedersen <bjoern.pedersen@frm2.tum.de>
This commit is contained in:
Björn Pedersen 2018-12-14 08:26:15 +01:00 committed by Bjoern Pedersen
parent a8bc6606af
commit 335db5f7e1

2
ci/Jenkinsfile vendored
View File

@ -29,6 +29,7 @@ def changedFiles = '';
def run_pylint(pyver) { def run_pylint(pyver) {
stage ('pylint-' + pyver) {
def status = 'OK' def status = 'OK'
changedFiles = sh returnStdout: true, script: '''\ changedFiles = sh returnStdout: true, script: '''\
#!/bin/bash #!/bin/bash
@ -87,6 +88,7 @@ fi
]) ])
if (status == 'FAILURE') { if (status == 'FAILURE') {
throw new Exception('Failure in pylint with ' + pyver) throw new Exception('Failure in pylint with ' + pyver)
}
} }
} // run_pylint } // run_pylint