Files
tuliao_py/Jenkinsfile
2025-01-27 15:00:47 +08:00

10 lines
176 B
Groovy

pipeline {
agent { docker 'python:3.10.12' }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}