Skip to content

Commit 957647e

Browse files
authored
Create Jenkinsfile-build-other-job.groovy (#11)
1 parent 165f654 commit 957647e

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Jenkinsfile-build-other-job.groovy

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
pipeline {
2+
agent any
3+
4+
stages {
5+
stage('trigger job') {
6+
steps {
7+
// please modify the job path
8+
build job: 'other-job', parameters:
9+
[string(name: 'name', value: 'rick'), booleanParam(name: 'DEBUG', value: true)]
10+
}
11+
}
12+
}
13+
}

0 commit comments

Comments
 (0)