-
-
Notifications
You must be signed in to change notification settings - Fork 105
[JENKINS-62014] Add support for build step environment filters #135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,6 +35,7 @@ | |
| import hudson.init.Terminator; | ||
| import hudson.model.Node; | ||
| import hudson.model.Result; | ||
| import hudson.model.Run; | ||
| import hudson.model.TaskListener; | ||
| import hudson.remoting.Channel; | ||
| import hudson.remoting.ChannelClosedException; | ||
|
|
@@ -302,6 +303,7 @@ static final class Execution extends AbstractStepExecutionImpl implements Runnab | |
| ws = context.get(FilePath.class); | ||
| node = FilePathUtils.getNodeName(ws); | ||
| DurableTask durableTask = step.task(); | ||
| durableTask.setRun(context.get(Run.class)); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @daniel-beck It looks like a few lines down in this method, you would have access to the Any particular reason you wanted to make changes to each kind of task over in |
||
| if (returnStdout) { | ||
| durableTask.captureOutput(); | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.