-
Notifications
You must be signed in to change notification settings - Fork 394
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pass param value maps back so that they can be logged in the callstac…
…k for a build step. Add secret param method
- Loading branch information
1 parent
6d43157
commit 3b3754f
Showing
3 changed files
with
40 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
pipeline { | ||
agent none | ||
stages { | ||
stage('Run subbuild') { | ||
parallel { | ||
stage('Build') { | ||
steps { | ||
build(job: "stop", parameters: [ | ||
string(name: 'stringVarName', value: 'stringVarValue'), | ||
password(name: 'secretVarName', value: 'superSecret'), | ||
booleanParam(name: 'booleanVarName', value: 'true') | ||
], wait: true) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |