diff --git a/Jenkinsfile b/Jenkinsfile index 8e5c835..3ad9882 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,9 +3,16 @@ pipeline { stages{ stage('unit test'){ steps{ - sh """ -tox -r -""" + sh 'tox -r' + } + } + stage('packaging'){ + steps{ + script { + if (env.BRANCH_NAME == 'master') { + sh 'echo "AAAA"' + } + } } } }