Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python hello world jenkins

pipeline {
    agent { docker { image 'python:3.5.1' } }
    stages {
        stage('build') {
            steps {
                sh 'python --version'
            }
        }
    }
}
Source by www.jenkins.io #
 
PREVIOUS NEXT
Tagged: #python #world #jenkins
ADD COMMENT
Topic
Name
2+5 =