test001/Jenkinsfile

28 lines
408 B
Plaintext
Raw Normal View History

2025-04-23 11:06:07 +08:00
pipeline {
agent any
stages {
2025-04-23 11:34:48 +08:00
stage('source') {
2025-04-23 11:06:07 +08:00
steps {
git(url: 'http://1.14.125.6:3000/wangyz/test001.git', branch: 'main')
}
}
2025-04-23 11:34:48 +08:00
stage('stage1') {
parallel {
stage('stage1') {
steps {
echo '123456'
}
}
stage('stage2') {
steps {
echo 'qazwsx'
}
}
}
}
2025-04-23 11:06:07 +08:00
}
}