From 35d78a5bba2a6b1447f59c829c6abcea98b83153 Mon Sep 17 00:00:00 2001 From: Matt Jia Date: Apr 11 2017 03:41:19 +0000 Subject: add flake8 into the Jenkinsfile --- diff --git a/Jenkinsfile b/Jenkinsfile index 1fac7dc..d10da3e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,6 +12,9 @@ node('rcm-tools-jslave-rhel-7') { checkout scm + stage('Invoke Flake8') { + sh 'flake8' + } stage('Build SRPM') { sh './rpmbuild.sh -bs' archiveArtifacts artifacts: 'rpmbuild-output/**'