Files
tuliao_py/Jenkinsfile

10 lines
176 B
Plaintext
Raw Normal View History

2025-01-27 15:00:47 +08:00
pipeline {
agent { docker 'python:3.10.12' }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}