Skip to content
Snippets Groups Projects
Jenkinsfile 574 B
Newer Older
Nsukami Patrick <ndkpatt at gmail dot com>'s avatar
Nsukami Patrick committed
pipeline {
  agent {label 'debian_buster'}
Nsukami Patrick <ndkpatt at gmail dot com>'s avatar
Nsukami Patrick committed
  stages {
    stage('lint') {
      parallel {
        stage('flake8') {
          steps {
            sh "tox -e flake8"
          }
        }
        stage('check-manifest') {
          steps {
            sh "tox -e check-manifest"
          }
        }
      }
    }
    stage('tests') {
      steps {
        sh "tox -e py3"
      }
    }
    stage('deploy') {
      when {
        environment name: 'DEPLOY', value: 'true'
      }
      agent {label 'docker-host'}
      steps {
        sh "make deploy"
      }
    }
  }
}