Answers for "python hello world jenkins"

0

python hello world jenkins

pipeline {
    agent { docker { image 'python:3.5.1' } }
    stages {
        stage('build') {
            steps {
                sh 'python --version'
            }
        }
    }
}
Posted by: Guest on March-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language