上传文件至 /

This commit is contained in:
bbh
2025-08-20 11:03:13 +08:00
commit 78b77a5d2a

14
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,14 @@
Jenkinsfile (Declarative Pipeline)
pipeline {
agent { docker 'python:3.5.1' }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}