Files
tuliao_py/Jenkinsfile
2025-01-27 16:46:20 +08:00

10 lines
152 B
Groovy

pipeline {
agent any
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}