Files
tuliao_py/Jenkinsfile

10 lines
152 B
Plaintext
Raw Normal View History

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