jenkinsfile

This commit is contained in:
2025-01-27 15:00:47 +08:00
parent ecc8e10281
commit a6bc877b2a

10
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,10 @@
pipeline {
agent { docker 'python:3.10.12' }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}