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

10 lines
153 B
Groovy

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