Branch: refs/heads/master
Home: https://github.com/jenkinsci/jenkins
Commit: ec4317d82ccb38bd5d995e70570deaa26c70b751
https://github.com/jenkinsci/jenkins/commit/ec4317d82ccb38bd5d995e70570deaa26c70b751
Author: Jesse Glick <[email protected]>
Date: 2015-01-14 (Wed, 14 Jan 2015)
Changed paths:
A core/src/main/java/jenkins/tasks/SimpleBuildWrapper.java
Log Message:
-----------
Initial draft of SimpleBuildWrapper.
Commit: 82e97c4d3a621dbe11d6033cdc213b8f61eed188
https://github.com/jenkinsci/jenkins/commit/82e97c4d3a621dbe11d6033cdc213b8f61eed188
Author: Jesse Glick <[email protected]>
Date: 2015-01-14 (Wed, 14 Jan 2015)
Changed paths:
M core/src/main/java/jenkins/tasks/SimpleBuildWrapper.java
Log Message:
-----------
Compilability fix.
For some reason (probably a mistake), BuildWrapper.Environment is nonstatic.
Commit: a85204e4d1d520f8edbcc6537c732f4eb165bb7b
https://github.com/jenkinsci/jenkins/commit/a85204e4d1d520f8edbcc6537c732f4eb165bb7b
Author: Jesse Glick <[email protected]>
Date: 2015-01-15 (Thu, 15 Jan 2015)
Changed paths:
M core/src/main/java/jenkins/tasks/SimpleBuildWrapper.java
Log Message:
-----------
tearDown should be allowed to throw exceptions.
Commit: ee7e66d758814a1f8b786019f95130b2f1ac9922
https://github.com/jenkinsci/jenkins/commit/ee7e66d758814a1f8b786019f95130b2f1ac9922
Author: Jesse Glick <[email protected]>
Date: 2015-01-16 (Fri, 16 Jan 2015)
Changed paths:
M changelog.html
M core/src/main/java/hudson/model/AbstractBuild.java
M debian/debian/jenkins.init
M test/src/test/groovy/hudson/model/AbstractBuildTest.groovy
R test/src/test/groovy/hudson/model/UpdateCenter2Test.groovy
M test/src/test/java/hudson/model/ExecutorTest.java
A test/src/test/java/hudson/model/UpdateCenter2Test.java
Log Message:
-----------
Merge branch 'master' into SimpleBuildWrapper-JENKINS-24673
Commit: 3c8e1b516a1cf0164d19a9afa488cff1ffc19b32
https://github.com/jenkinsci/jenkins/commit/3c8e1b516a1cf0164d19a9afa488cff1ffc19b32
Author: Jesse Glick <[email protected]>
Date: 2015-01-16 (Fri, 16 Jan 2015)
Changed paths:
M core/src/main/java/jenkins/tasks/SimpleBuildWrapper.java
Log Message:
-----------
API refinements and documentation.
Commit: 1b1ad56b23bc4025310fc79a3747c3b9e6b0e7be
https://github.com/jenkinsci/jenkins/commit/1b1ad56b23bc4025310fc79a3747c3b9e6b0e7be
Author: Jesse Glick <[email protected]>
Date: 2015-01-16 (Fri, 16 Jan 2015)
Changed paths:
M core/src/main/java/jenkins/tasks/SimpleBuildWrapper.java
Log Message:
-----------
Typo.
Commit: f1102009d922dd0f5dcfc532c33aa1d8dc567331
https://github.com/jenkinsci/jenkins/commit/f1102009d922dd0f5dcfc532c33aa1d8dc567331
Author: Jesse Glick <[email protected]>
Date: 2015-01-20 (Tue, 20 Jan 2015)
Changed paths:
M changelog.html
M cli/pom.xml
M core/pom.xml
M core/src/main/java/hudson/FilePath.java
M core/src/main/resources/hudson/tasks/Shell/config.groovy
M core/src/main/resources/lib/form/textarea/textarea.js
M debian/debian/changelog
M plugins/pom.xml
M pom.xml
M test/pom.xml
M war/pom.xml
M war/src/main/webapp/scripts/sortable.js
Log Message:
-----------
Merge branch 'master' into SimpleBuildWrapper-JENKINS-24673
Commit: 798dc6137376e032c193b3f3a019401f5057f4c9
https://github.com/jenkinsci/jenkins/commit/798dc6137376e032c193b3f3a019401f5057f4c9
Author: Jesse Glick <[email protected]>
Date: 2015-01-20 (Tue, 20 Jan 2015)
Changed paths:
M core/src/main/java/jenkins/tasks/SimpleBuildWrapper.java
Log Message:
-----------
Better to throw the ISE before, not after, overwriting the environment
variable.
Commit: 716f5ada3589a322d02497a67aad8ca939694a08
https://github.com/jenkinsci/jenkins/commit/716f5ada3589a322d02497a67aad8ca939694a08
Author: Jesse Glick <[email protected]>
Date: 2015-01-22 (Thu, 22 Jan 2015)
Changed paths:
M core/src/main/java/jenkins/tasks/SimpleBuildWrapper.java
Log Message:
-----------
Javadoc improvements.
Commit: b21af0f99ae311d334fe53fa7faf453407e5c270
https://github.com/jenkinsci/jenkins/commit/b21af0f99ae311d334fe53fa7faf453407e5c270
Author: Jesse Glick <[email protected]>
Date: 2015-01-22 (Thu, 22 Jan 2015)
Changed paths:
M core/src/main/java/jenkins/tasks/SimpleBuildWrapper.java
Log Message:
-----------
No need to check for c.env == null any more.
Commit: e926ed313bb2a36aa317e78798c6f741e14f0768
https://github.com/jenkinsci/jenkins/commit/e926ed313bb2a36aa317e78798c6f741e14f0768
Author: Jesse Glick <[email protected]>
Date: 2015-01-22 (Thu, 22 Jan 2015)
Changed paths:
M core/src/main/java/jenkins/tasks/SimpleBuildWrapper.java
A test/src/test/java/jenkins/tasks/SimpleBuildWrapperTest.java
Log Message:
-----------
Added some tests for SimpleBuildWrapper used from a freestyle project as a
BuildWrapper.
This demonstrated that we actually need to call EnvVars.overrideAll explicitly
(as CoreWrapperStep already did).
Commit: 94cc48700277e67121e9cb6fbde2835b022cebb9
https://github.com/jenkinsci/jenkins/commit/94cc48700277e67121e9cb6fbde2835b022cebb9
Author: Jesse Glick <[email protected]>
Date: 2015-01-22 (Thu, 22 Jan 2015)
Changed paths:
M test/src/test/java/jenkins/tasks/SimpleBuildWrapperTest.java
Log Message:
-----------
Also verifying that initialEnvironment somehow works.
Commit: 416bdef94db123ed8d051d095007491c9184b6ce
https://github.com/jenkinsci/jenkins/commit/416bdef94db123ed8d051d095007491c9184b6ce
Author: Jesse Glick <[email protected]>
Date: 2015-01-23 (Fri, 23 Jan 2015)
Changed paths:
M changelog.html
A core/src/main/java/jenkins/tasks/SimpleBuildWrapper.java
A test/src/test/java/jenkins/tasks/SimpleBuildWrapperTest.java
Log Message:
-----------
[JENKINS-24673] Noting merge of #1530.
Compare:
https://github.com/jenkinsci/jenkins/compare/1dd60ec77808...416bdef94db1
--
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].
For more options, visit https://groups.google.com/d/optout.