initial/Jenkinsfile

28 lines
443 B
Plaintext
Raw Normal View History

2025-04-23 18:02:50 +08:00
pipeline {
agent any
stages {
stage('1') {
2025-04-24 21:24:06 +08:00
parallel {
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')
}
}
2025-04-23 18:02:50 +08:00
}
}
2025-04-23 19:33:37 +08:00
stage('2') {
steps {
echo '123456'
}
}
2025-04-23 18:02:50 +08:00
}
}