Branch: refs/heads/master
Home: https://github.com/jenkinsci/workflow-basic-steps-plugin
Commit: ce7b2841731119a9ef9f687c9bf46e260ad989d8
https://github.com/jenkinsci/workflow-basic-steps-plugin/commit/ce7b2841731119a9ef9f687c9bf46e260ad989d8
Author: Devin Nusbaum <[email protected]>
Date: 2019-04-18 (Thu, 18 Apr 2019)
Changed paths:
M pom.xml
A src/main/java/org/jenkinsci/plugins/workflow/steps/UnstableStep.java
A src/test/java/org/jenkinsci/plugins/workflow/steps/UnstableStepTest.java
Log Message:
-----------
[JENKINS-45579] Add step to set unstable status for a FlowNode
Commit: 1c79899fca89cade7b58de9f1290dfd76999a883
https://github.com/jenkinsci/workflow-basic-steps-plugin/commit/1c79899fca89cade7b58de9f1290dfd76999a883
Author: Devin Nusbaum <[email protected]>
Date: 2019-04-22 (Mon, 22 Apr 2019)
Changed paths:
M pom.xml
Log Message:
-----------
[JENKINS-45579] Switch to incremental dependency
Commit: 19cd7d5b9a3c33ebf2960c54ed71cb461970f48a
https://github.com/jenkinsci/workflow-basic-steps-plugin/commit/19cd7d5b9a3c33ebf2960c54ed71cb461970f48a
Author: Devin Nusbaum <[email protected]>
Date: 2019-04-26 (Fri, 26 Apr 2019)
Changed paths:
M src/main/java/org/jenkinsci/plugins/workflow/steps/UnstableStep.java
M src/test/java/org/jenkinsci/plugins/workflow/steps/UnstableStepTest.java
Log Message:
-----------
[JENKINS-45579] Address review comments for UnstableStep
Commit: 5df3bd7166dc407ed9c00a0942dd6f4d190bdd0c
https://github.com/jenkinsci/workflow-basic-steps-plugin/commit/5df3bd7166dc407ed9c00a0942dd6f4d190bdd0c
Author: Devin Nusbaum <[email protected]>
Date: 2019-04-30 (Tue, 30 Apr 2019)
Changed paths:
M pom.xml
M src/main/java/org/jenkinsci/plugins/workflow/steps/CatchErrorStep.java
A
src/main/java/org/jenkinsci/plugins/workflow/steps/CatchExecutionOptions.java
M src/main/java/org/jenkinsci/plugins/workflow/steps/UnstableStep.java
A src/main/java/org/jenkinsci/plugins/workflow/steps/WarnErrorStep.java
M
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/config.jelly
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/help-buildResult.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/help-catchInterruptions.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/help-message.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/help-stageResult.html
M
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/help.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/UnstableStep/config.jelly
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/UnstableStep/help-message.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/UnstableStep/help.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/WarnErrorStep/config.jelly
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/WarnErrorStep/help-catchInterruptions.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/WarnErrorStep/help-message.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/WarnErrorStep/help.html
M src/test/java/org/jenkinsci/plugins/workflow/steps/CatchErrorStepTest.java
M src/test/java/org/jenkinsci/plugins/workflow/steps/UnstableStepTest.java
A src/test/java/org/jenkinsci/plugins/workflow/steps/WarnErrorStepTest.java
Log Message:
-----------
[JENKINS-45579] Add new warnError step and enhance the catchError step
warnError is like catchError under the hood with a few differences:
* A message that will be printed if an error is caught is required
* The build result is set to unstable instead of failed if an error is caught
* A WarningAction is attached to the step's FlowNode if an error is caught
Both steps have been given the following boolean parameter:
* catchInterruptions: Whether to handle caught FlowInterruptedExceptions
or just rethrow them. Defaults to true for both steps for consistency.
catchError has been given the following parameters:
* buildResult: The result that the overall build resul should be set to
when an error is caught
* stepResult: The result that should be used to attach a WarningAction to
the step when an error is caught
* message: A String to print when an error is caught. The message will also
be added to a WarningAction on the step if stepResult is not SUCCESS or
null
Commit: db987d2a96794532380a1ee8038becb40c15e198
https://github.com/jenkinsci/workflow-basic-steps-plugin/commit/db987d2a96794532380a1ee8038becb40c15e198
Author: Devin Nusbaum <[email protected]>
Date: 2019-04-30 (Tue, 30 Apr 2019)
Changed paths:
M src/main/java/org/jenkinsci/plugins/workflow/steps/CatchErrorStep.java
M src/main/java/org/jenkinsci/plugins/workflow/steps/UnstableStep.java
M src/main/java/org/jenkinsci/plugins/workflow/steps/WarnErrorStep.java
Log Message:
-----------
Fix SpotBugs warnings
Commit: 6b7969f3f2b7b0ced366f4bd74f22798152676e7
https://github.com/jenkinsci/workflow-basic-steps-plugin/commit/6b7969f3f2b7b0ced366f4bd74f22798152676e7
Author: Devin Nusbaum <[email protected]>
Date: 2019-04-30 (Tue, 30 Apr 2019)
Changed paths:
M src/main/java/org/jenkinsci/plugins/workflow/steps/UnstableStep.java
M src/main/java/org/jenkinsci/plugins/workflow/steps/WarnErrorStep.java
Log Message:
-----------
Fix Javadoc and clean up imports
Commit: 482216096b83677868600f17a4acbfc93b044b90
https://github.com/jenkinsci/workflow-basic-steps-plugin/commit/482216096b83677868600f17a4acbfc93b044b90
Author: Devin Nusbaum <[email protected]>
Date: 2019-05-13 (Mon, 13 May 2019)
Changed paths:
M pom.xml
Log Message:
-----------
[JENKINS-45579] Update to released version of workflow-api
Commit: 05160d312c6118ea53394148a8bc85a4336659ec
https://github.com/jenkinsci/workflow-basic-steps-plugin/commit/05160d312c6118ea53394148a8bc85a4336659ec
Author: Devin Nusbaum <[email protected]>
Date: 2019-05-13 (Mon, 13 May 2019)
Changed paths:
M src/test/java/org/jenkinsci/plugins/workflow/steps/CatchErrorStepTest.java
A
src/test/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStepTest/serialForm.zip
Log Message:
-----------
[JENKINS-45579] Add test that resumes an old catchError step
Commit: 29da2b177f1e6926615079e385a82f6df3bb9c72
https://github.com/jenkinsci/workflow-basic-steps-plugin/commit/29da2b177f1e6926615079e385a82f6df3bb9c72
Author: Devin Nusbaum <[email protected]>
Date: 2019-05-14 (Tue, 14 May 2019)
Changed paths:
M pom.xml
M src/main/java/org/jenkinsci/plugins/workflow/steps/CatchErrorStep.java
A
src/main/java/org/jenkinsci/plugins/workflow/steps/CatchExecutionOptions.java
A src/main/java/org/jenkinsci/plugins/workflow/steps/UnstableStep.java
A src/main/java/org/jenkinsci/plugins/workflow/steps/WarnErrorStep.java
M
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/config.jelly
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/help-buildResult.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/help-catchInterruptions.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/help-message.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/help-stageResult.html
M
src/main/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStep/help.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/UnstableStep/config.jelly
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/UnstableStep/help-message.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/UnstableStep/help.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/WarnErrorStep/config.jelly
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/WarnErrorStep/help-catchInterruptions.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/WarnErrorStep/help-message.html
A
src/main/resources/org/jenkinsci/plugins/workflow/steps/WarnErrorStep/help.html
M src/test/java/org/jenkinsci/plugins/workflow/steps/CatchErrorStepTest.java
A src/test/java/org/jenkinsci/plugins/workflow/steps/UnstableStepTest.java
A src/test/java/org/jenkinsci/plugins/workflow/steps/WarnErrorStepTest.java
A
src/test/resources/org/jenkinsci/plugins/workflow/steps/CatchErrorStepTest/serialForm.zip
Log Message:
-----------
Merge pull request #83 from dwnusbaum/JENKINS-45579
[JENKINS-45579] Add steps to set unstable status and enhance catchError
Compare:
https://github.com/jenkinsci/workflow-basic-steps-plugin/compare/5d48ed444cd4...29da2b177f1e
--
You received this message because you are subscribed to the Google Groups
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/workflow-basic-steps-plugin/push/refs/heads/master/5d48ed-29da2b%40github.com.
For more options, visit https://groups.google.com/d/optout.