initial/Jenkinsfile

17 lines
233 B
Plaintext
Raw Normal View History

2025-04-23 18:02:50 +08:00
pipeline {
agent any
stages {
stage('1') {
steps {
2025-04-23 19:37:31 +08:00
git(url: 'http://1.14.125.6:3000/wangyz/initial.git', branch: 'master')
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
}
}