📜  python hello world jenkins - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:51.906000             🧑  作者: Mango

代码示例1
pipeline {
    agent { docker { image 'python:3.5.1' } }
    stages {
        stage('build') {
            steps {
                sh 'python --version'
            }
        }
    }
}