Added Jenkinsfile

This commit is contained in:
admin 2025-04-24 21:24:06 +08:00
parent acacfd9910
commit 2ab74903d3

15
Jenkinsfile vendored
View File

@ -2,8 +2,19 @@ pipeline {
agent any agent any
stages { stages {
stage('1') { stage('1') {
steps { parallel {
git(url: 'http://1.14.125.6:3000/wangyz/test001.git', branch: 'main') stage('1') {
steps {
git(url: 'http://1.14.125.6:3000/wangyz/test001.git', branch: 'main')
}
}
stage('') {
steps {
git(url: 'http://1.14.125.6:3000/wangyz/test002.git', branch: 'main')
}
}
} }
} }