summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: 2862d347f7aeb5dd65d5d7954e314a4c00f36c61 (plain)
1
2
3
4
5
6
7
8
9
10
pipeline {
    agent { docker { image 'python:3.5.1' } }
    stages {
        stage('build') {
            steps {
                sh 'python --version'
            }
        }
    }
}