Files
tuliao_py/Jenkinsfile

10 lines
153 B
Plaintext
Raw Permalink 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 {
2025-01-27 16:48:01 +08:00
sh 'python3 --version'
2025-01-27 15:00:47 +08:00
}
}
}
}