Branch: refs/heads/JENKINS-37781
Home: https://github.com/jenkinsci/pipeline-model-definition-plugin
Commit: d07730e7939fee12e9c287a0537e67570edf52c9
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/d07730e7939fee12e9c287a0537e67570edf52c9
Author: Andrew Bayer <[email protected]>
Date: 2016-10-22 (Sat, 22 Oct 2016)
Changed paths:
A pipeline-model-declarative-agent/pom.xml
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgent.java
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentDescriptor.java
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentScript.java
M pipeline-model-definition/pom.xml
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Agent.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Root.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/Any.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/DockerPipeline.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/Label.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/None.java
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ClosureModelTranslator.groovy
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/DockerPipelineScript.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelScript.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/NoneScript.groovy
Log Message:
-----------
[JENKINS-38433] Make the agent section pluggable.
This is very preliminary - I expect a lot more iteration. But it
works. The DeclarativeAgent* classes are in a separate plugin so that
they can be depended on by other plugins with minimal transitive
dependencies in the process (just workflow-cps-plugin currently - may
try to find a way to narrow that down further).
Commit: 5431f5a1824825e8eb85d5ce46e1c26a29b2bef4
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/5431f5a1824825e8eb85d5ce46e1c26a29b2bef4
Author: Andrew Bayer <[email protected]>
Date: 2016-10-22 (Sat, 22 Oct 2016)
Changed paths:
M pom.xml
Log Message:
-----------
Oops, forgot to add new module
Commit: d2cb54b431a4b55ddc564f1e9da984848cb1a2b3
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/d2cb54b431a4b55ddc564f1e9da984848cb1a2b3
Author: Andrew Bayer <[email protected]>
Date: 2016-10-22 (Sat, 22 Oct 2016)
Changed paths:
M pipeline-model-definition/pom.xml
M
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/DockerPipeline.java
M
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/Label.java
Log Message:
-----------
Fixing a few issues
Commit: 1e902256a7ce5dccc156148d256580329bc363ad
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/1e902256a7ce5dccc156148d256580329bc363ad
Author: Andrew Bayer <[email protected]>
Date: 2016-10-22 (Sat, 22 Oct 2016)
Changed paths:
M
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgent.java
M
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentDescriptor.java
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Agent.groovy
Log Message:
-----------
First round of javadoc.
Commit: 98736b04440a5eaa95a2d10a582067d7dc27c9c8
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/98736b04440a5eaa95a2d10a582067d7dc27c9c8
Author: Andrew Bayer <[email protected]>
Date: 2016-10-22 (Sat, 22 Oct 2016)
Changed paths:
M
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentDescriptor.java
Log Message:
-----------
Whoops, deleted a used method
Commit: e6740dd1157ecfbd5943c2c7008ba22a91d1eeaf
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/e6740dd1157ecfbd5943c2c7008ba22a91d1eeaf
Author: Andrew Bayer <[email protected]>
Date: 2016-10-24 (Mon, 24 Oct 2016)
Changed paths:
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AgentTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ValidatorTest.java
A
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelAndOtherFieldAgent.java
A pipeline-model-definition/src/test/resources/agentTypeOrdering.groovy
A
pipeline-model-definition/src/test/resources/errors/agentMissingRequiredParam.groovy
A
pipeline-model-definition/src/test/resources/errors/agentUnknownParamForType.groovy
A
pipeline-model-definition/src/test/resources/errors/unknownAgentType.groovy
A
pipeline-model-definition/src/test/resources/errors/unknownBareAgentType.groovy
A pipeline-model-definition/src/test/resources/json/agentTypeOrdering.json
A
pipeline-model-definition/src/test/resources/json/errors/agentMissingRequiredParam.json
A
pipeline-model-definition/src/test/resources/json/errors/agentUnknownParamForType.json
A
pipeline-model-definition/src/test/resources/json/errors/unknownAgentType.json
A
pipeline-model-definition/src/test/resources/json/errors/unknownBareAgentType.json
A
pipeline-model-definition/src/test/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelAndOtherFieldAgentScript.groovy
Log Message:
-----------
Batch o' tests.
Most notably - agent type ordering (which required a fix in the
validator) and a giant pile of failed validation tests (which also
required some tweaks in the validator).
Commit: 98a1e76589c028dbc0d9e967e5b9d6b42069c25e
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/98a1e76589c028dbc0d9e967e5b9d6b42069c25e
Author: Andrew Bayer <[email protected]>
Date: 2016-10-24 (Mon, 24 Oct 2016)
Changed paths:
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ModelParser.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ValidatorTest.java
A
pipeline-model-definition/src/test/resources/errors/pipelineStepWithinOtherBlocksFailure.groovy
Log Message:
-----------
Merge branch 'master' into pluggable-agent
Commit: b01db8aa6e692e06c8228e0891ca8f06aac4aa02
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/b01db8aa6e692e06c8228e0891ca8f06aac4aa02
Author: Andrew Bayer <[email protected]>
Date: 2016-10-24 (Mon, 24 Oct 2016)
Changed paths:
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTPipelineDef.java
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTStep.java
A
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTWrapper.java
A
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTWrappers.java
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidator.java
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Root.groovy
A
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Wrappers.groovy
A
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/WrappersToMap.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/JSONParser.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ModelParser.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ClosureModelTranslator.groovy
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/WrappersToMapTranslator.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ValidatorTest.java
A
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/WrappersTest.java
A
pipeline-model-definition/src/test/resources/errors/invalidWrapperType.groovy
A
pipeline-model-definition/src/test/resources/json/errors/invalidWrapperType.json
A pipeline-model-definition/src/test/resources/json/multipleWrappers.json
A pipeline-model-definition/src/test/resources/json/simpleWrapper.json
A pipeline-model-definition/src/test/resources/multipleWrappers.groovy
A pipeline-model-definition/src/test/resources/simpleWrapper.groovy
Log Message:
-----------
[FIXED JENKINS-37823] Added "wrappers" section.
Commit: 0cacc88f00e99df9aef35a1d57d1eec06451836c
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/0cacc88f00e99df9aef35a1d57d1eec06451836c
Author: Andrew Bayer <[email protected]>
Date: 2016-10-24 (Mon, 24 Oct 2016)
Changed paths:
M pipeline-model-definition/src/main/resources/ast-schema.json
Log Message:
-----------
Forgot to update JSON schema
Commit: de2fe56905e5a32b733a09838a74d8356a8c6af1
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/de2fe56905e5a32b733a09838a74d8356a8c6af1
Author: Andrew Bayer <[email protected]>
Date: 2016-10-24 (Mon, 24 Oct 2016)
Changed paths:
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
Log Message:
-----------
Forgot we don't have a Jenkins instance at that point
Commit: 69965bece5449a5b785b3bd0949e19db8f7867d8
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/69965bece5449a5b785b3bd0949e19db8f7867d8
Author: Andrew Bayer <[email protected]>
Date: 2016-10-24 (Mon, 24 Oct 2016)
Changed paths:
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
Log Message:
-----------
Argh, typo
Commit: 36d88c06dca7583256586e6d4fa876d4bebe8358
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/36d88c06dca7583256586e6d4fa876d4bebe8358
Author: Andrew Bayer <[email protected]>
Date: 2016-10-24 (Mon, 24 Oct 2016)
Changed paths:
M pom.xml
Log Message:
-----------
Use repo.jenkins-ci.org in parent POM.
Have seen problems with the default Maven central repo on Azure for
some reason, so hey.
Commit: 49790e50c090c76067c5f707e02676b3025bf630
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/49790e50c090c76067c5f707e02676b3025bf630
Author: Andrew Bayer <[email protected]>
Date: 2016-10-24 (Mon, 24 Oct 2016)
Changed paths:
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/AbstractBuildConditionResponder.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Aborted.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Always.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Changed.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Failure.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Success.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Unstable.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
M
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/model/BuildCondition.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/BuildConditionResponderTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ValidatorTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/endpoints/ModelConverterActionTest.java
A pipeline-model-definition/src/test/resources/buildConditionOrdering.groovy
Log Message:
-----------
Merge branch 'master' into pluggable-agent
Commit: f0bf64bb5b132d08cb1d742a088c16ec69995e3b
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/f0bf64bb5b132d08cb1d742a088c16ec69995e3b
Author: Andrew Bayer <[email protected]>
Date: 2016-10-24 (Mon, 24 Oct 2016)
Changed paths:
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/AbstractBuildConditionResponder.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Aborted.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Always.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Changed.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Failure.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Success.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/conditions/Unstable.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
M
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/model/BuildCondition.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/BuildConditionResponderTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ValidatorTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/endpoints/ModelConverterActionTest.java
A pipeline-model-definition/src/test/resources/buildConditionOrdering.groovy
Log Message:
-----------
Merge branch 'master' into jenkins-37823-mk2
Commit: a2fa47a98af2506ddc066c72dbb290214a5243f0
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/a2fa47a98af2506ddc066c72dbb290214a5243f0
Author: Andrew Bayer <[email protected]>
Date: 2016-10-24 (Mon, 24 Oct 2016)
Changed paths:
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
Log Message:
-----------
Turn on sandbox for non-SCM tests
Commit: b9e63f2039063b0ea87ec00cd4fe9cbb0c2f99cb
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/b9e63f2039063b0ea87ec00cd4fe9cbb0c2f99cb
Author: Andrew Bayer <[email protected]>
Date: 2016-10-25 (Tue, 25 Oct 2016)
Changed paths:
M pipeline-model-api/pom.xml
M pipeline-model-declarative-agent/pom.xml
M
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentDescriptor.java
M pipeline-model-definition/pom.xml
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
M
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/Any.java
M
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/DockerPipeline.java
M
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/Label.java
M
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/None.java
Log Message:
-----------
Addressing review comments
Commit: d78fa190231ed97993165ed3b6eea132ce80cd99
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/d78fa190231ed97993165ed3b6eea132ce80cd99
Author: Andrew Bayer <[email protected]>
Date: 2016-10-25 (Tue, 25 Oct 2016)
Changed paths:
M pom.xml
Log Message:
-----------
Merge pull request #37 from abayer/add-repos-to-parent-pom
Use repo.jenkins-ci.org in parent POM.
Commit: dc3c6154e799785dac43128e91eefc3fb72f41b0
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/dc3c6154e799785dac43128e91eefc3fb72f41b0
Author: Andrew Bayer <[email protected]>
Date: 2016-10-25 (Tue, 25 Oct 2016)
Changed paths:
M pom.xml
Log Message:
-----------
Merge branch 'master' into pluggable-agent
Commit: 8dd508aae0be8cda95f59295a8a917701733039b
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/8dd508aae0be8cda95f59295a8a917701733039b
Author: Andrew Bayer <[email protected]>
Date: 2016-10-25 (Tue, 25 Oct 2016)
Changed paths:
M pipeline-model-api/pom.xml
M pipeline-model-declarative-agent/pom.xml
M pipeline-model-definition/pom.xml
M pom.xml
Log Message:
-----------
Fix Maven inheritance
Commit: e8ea1e67198d0916652015fa3d64cc87d930cd11
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/e8ea1e67198d0916652015fa3d64cc87d930cd11
Author: Andrew Bayer <[email protected]>
Date: 2016-10-25 (Tue, 25 Oct 2016)
Changed paths:
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Stage.groovy
Log Message:
-----------
Handle any/none within stages' agents
Commit: dc892eb83da2537c5da4aca63e570ab3e826dbea
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/dc892eb83da2537c5da4aca63e570ab3e826dbea
Author: Andrew Bayer <[email protected]>
Date: 2016-10-25 (Tue, 25 Oct 2016)
Changed paths:
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AgentTest.java
A pipeline-model-definition/src/test/resources/agentAnyInStage.groovy
Log Message:
-----------
Test for any/none in a stage
Commit: 7d3724c6a1cb6491565bfd94799ad86c890e459f
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/7d3724c6a1cb6491565bfd94799ad86c890e459f
Author: Andrew Bayer <[email protected]>
Date: 2016-10-25 (Tue, 25 Oct 2016)
Changed paths:
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTStage.java
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Stage.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/JSONParser.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ModelParser.groovy
M pipeline-model-definition/src/main/resources/ast-schema.json
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/EnvironmentTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ToolsTest.java
A pipeline-model-definition/src/test/resources/environmentInStage.groovy
A pipeline-model-definition/src/test/resources/json/environmentInStage.json
A pipeline-model-definition/src/test/resources/json/toolsInStage.json
A pipeline-model-definition/src/test/resources/toolsInStage.groovy
Log Message:
-----------
[FIXED JENKINS-39244, FIXED JENKINS-39245] Add env and tools to stages
Adds support for tools and environment sections inside individual stages.
Commit: 52dd77a8d59d663927b61e376dabeebacda1ac4a
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/52dd77a8d59d663927b61e376dabeebacda1ac4a
Author: Michael Neale <[email protected]>
Date: 2016-10-27 (Thu, 27 Oct 2016)
Changed paths:
M README.md
Log Message:
-----------
Update README.md
Commit: 4c36239984faa56a485ac11c8fe0b64bfb540e60
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/4c36239984faa56a485ac11c8fe0b64bfb540e60
Author: Andrew Bayer <[email protected]>
Date: 2016-10-27 (Thu, 27 Oct 2016)
Changed paths:
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
Log Message:
-----------
Remove debug statement
Commit: 869ab824b33515a95cf1a3950299ace908536cc3
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/869ab824b33515a95cf1a3950299ace908536cc3
Author: Andrew Bayer <[email protected]>
Date: 2016-10-27 (Thu, 27 Oct 2016)
Changed paths:
M README.md
Log Message:
-----------
Merge pull request #42 from jenkinsci/readme
make readme a bit clearer
Commit: 8f93d6ff1269922da85a589e477ab37e97210f15
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/8f93d6ff1269922da85a589e477ab37e97210f15
Author: Andrew Bayer <[email protected]>
Date: 2016-10-27 (Thu, 27 Oct 2016)
Changed paths:
M SYNTAX.md
Log Message:
-----------
Updating SYNTAX
Commit: 83a83f675427cbc2eb6f4ba4bf8e487c1654fbf0
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/83a83f675427cbc2eb6f4ba4bf8e487c1654fbf0
Author: Robert Sandell <[email protected]>
Date: 2016-10-28 (Fri, 28 Oct 2016)
Changed paths:
M SYNTAX.md
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTStage.java
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Stage.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/JSONParser.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ModelParser.groovy
M pipeline-model-definition/src/main/resources/ast-schema.json
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/EnvironmentTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ToolsTest.java
A pipeline-model-definition/src/test/resources/environmentInStage.groovy
A pipeline-model-definition/src/test/resources/json/environmentInStage.json
A pipeline-model-definition/src/test/resources/json/toolsInStage.json
A pipeline-model-definition/src/test/resources/toolsInStage.groovy
Log Message:
-----------
Merge pull request #40 from abayer/jenkins-39244
[FIXED JENKINS-39244, FIXED JENKINS-39245] Add env and tools to stages
Commit: 0e9e778143e797a900b844d77774c6954d0cbf09
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/0e9e778143e797a900b844d77774c6954d0cbf09
Author: Andrew Bayer <[email protected]>
Date: 2016-10-28 (Fri, 28 Oct 2016)
Changed paths:
M README.md
M SYNTAX.md
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTStage.java
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Stage.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/JSONParser.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ModelParser.groovy
M pipeline-model-definition/src/main/resources/ast-schema.json
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/EnvironmentTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ToolsTest.java
A pipeline-model-definition/src/test/resources/environmentInStage.groovy
A pipeline-model-definition/src/test/resources/json/environmentInStage.json
A pipeline-model-definition/src/test/resources/json/toolsInStage.json
A pipeline-model-definition/src/test/resources/toolsInStage.groovy
Log Message:
-----------
Merge branch 'master' into pluggable-agent
Conflicts:
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
Commit: ee8b9422373aab59d0285a9c2f09f7206736ff8a
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/ee8b9422373aab59d0285a9c2f09f7206736ff8a
Author: Andrew Bayer <[email protected]>
Date: 2016-10-28 (Fri, 28 Oct 2016)
Changed paths:
M README.md
M SYNTAX.md
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTStage.java
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Stage.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/JSONParser.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ModelParser.groovy
M pipeline-model-definition/src/main/resources/ast-schema.json
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/EnvironmentTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ToolsTest.java
A pipeline-model-definition/src/test/resources/environmentInStage.groovy
A pipeline-model-definition/src/test/resources/json/environmentInStage.json
A pipeline-model-definition/src/test/resources/json/toolsInStage.json
A pipeline-model-definition/src/test/resources/toolsInStage.groovy
M pom.xml
Log Message:
-----------
Merge branch 'master' into jenkins-37823-mk2
Conflicts:
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
Commit: 0a867be2fca16d9cdcba318bdb7adafac0e63648
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/0a867be2fca16d9cdcba318bdb7adafac0e63648
Author: Andrew Bayer <[email protected]>
Date: 2016-10-31 (Mon, 31 Oct 2016)
Changed paths:
M pipeline-model-api/pom.xml
M pipeline-model-declarative-agent/pom.xml
M
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentDescriptor.java
M pipeline-model-definition/pom.xml
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Agent.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
M pom.xml
Log Message:
-----------
Responding to review comments
Commit: 3f2358695ea31b9524598012b608af5b25fd51e0
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/3f2358695ea31b9524598012b608af5b25fd51e0
Author: Andrew Bayer <[email protected]>
Date: 2016-10-31 (Mon, 31 Oct 2016)
Changed paths:
M
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentDescriptor.java
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Agent.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelScript.groovy
Log Message:
-----------
Removing getOrderedDescriptors() and simplifying LabelScript
Commit: bd627b0a18b8a2a2dbb20c49b196071cd402e5a5
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/bd627b0a18b8a2a2dbb20c49b196071cd402e5a5
Author: Andrew Bayer <[email protected]>
Date: 2016-10-31 (Mon, 31 Oct 2016)
Changed paths:
M
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentDescriptor.java
Log Message:
-----------
CheckForNull, not Nullable
Commit: f3f71c9420c0a8716446d9d6f5113061d251164d
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/f3f71c9420c0a8716446d9d6f5113061d251164d
Author: Patrick O'Hannigan <[email protected]>
Date: 2016-11-01 (Tue, 01 Nov 2016)
Changed paths:
M SYNTAX.md
Log Message:
-----------
Update SYNTAX.md
minor grammar cleanup
Commit: 9e9b0bbb67f8417e458672e6c70a49b989a062fa
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/9e9b0bbb67f8417e458672e6c70a49b989a062fa
Author: Andrew Bayer <[email protected]>
Date: 2016-11-01 (Tue, 01 Nov 2016)
Changed paths:
M pipeline-model-api/pom.xml
A pipeline-model-declarative-agent/pom.xml
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgent.java
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentDescriptor.java
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentScript.java
M pipeline-model-definition/pom.xml
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Agent.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Root.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Stage.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/Any.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/DockerPipeline.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/Label.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/None.java
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ClosureModelTranslator.groovy
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/DockerPipelineScript.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelScript.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/NoneScript.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AgentTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ValidatorTest.java
A
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelAndOtherFieldAgent.java
A pipeline-model-definition/src/test/resources/agentAnyInStage.groovy
A pipeline-model-definition/src/test/resources/agentTypeOrdering.groovy
A
pipeline-model-definition/src/test/resources/errors/agentMissingRequiredParam.groovy
A
pipeline-model-definition/src/test/resources/errors/agentUnknownParamForType.groovy
A
pipeline-model-definition/src/test/resources/errors/unknownAgentType.groovy
A
pipeline-model-definition/src/test/resources/errors/unknownBareAgentType.groovy
A pipeline-model-definition/src/test/resources/json/agentTypeOrdering.json
A
pipeline-model-definition/src/test/resources/json/errors/agentMissingRequiredParam.json
A
pipeline-model-definition/src/test/resources/json/errors/agentUnknownParamForType.json
A
pipeline-model-definition/src/test/resources/json/errors/unknownAgentType.json
A
pipeline-model-definition/src/test/resources/json/errors/unknownBareAgentType.json
A
pipeline-model-definition/src/test/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelAndOtherFieldAgentScript.groovy
M pom.xml
Log Message:
-----------
Merge pull request #35 from abayer/pluggable-agent
[JENKINS-38433] Make the agent section pluggable.
Commit: 300e59db46c2ecaf25c13e438ed2dea928993af8
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/300e59db46c2ecaf25c13e438ed2dea928993af8
Author: Andrew Bayer <[email protected]>
Date: 2016-11-01 (Tue, 01 Nov 2016)
Changed paths:
M pipeline-model-api/pom.xml
A pipeline-model-declarative-agent/pom.xml
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgent.java
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentDescriptor.java
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentScript.java
M pipeline-model-definition/pom.xml
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Agent.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Root.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Stage.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/Any.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/DockerPipeline.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/Label.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/None.java
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ClosureModelTranslator.groovy
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/DockerPipelineScript.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelScript.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/NoneScript.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AgentTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ValidatorTest.java
A
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelAndOtherFieldAgent.java
A pipeline-model-definition/src/test/resources/agentAnyInStage.groovy
A pipeline-model-definition/src/test/resources/agentTypeOrdering.groovy
A
pipeline-model-definition/src/test/resources/errors/agentMissingRequiredParam.groovy
A
pipeline-model-definition/src/test/resources/errors/agentUnknownParamForType.groovy
A
pipeline-model-definition/src/test/resources/errors/unknownAgentType.groovy
A
pipeline-model-definition/src/test/resources/errors/unknownBareAgentType.groovy
A pipeline-model-definition/src/test/resources/json/agentTypeOrdering.json
A
pipeline-model-definition/src/test/resources/json/errors/agentMissingRequiredParam.json
A
pipeline-model-definition/src/test/resources/json/errors/agentUnknownParamForType.json
A
pipeline-model-definition/src/test/resources/json/errors/unknownAgentType.json
A
pipeline-model-definition/src/test/resources/json/errors/unknownBareAgentType.json
A
pipeline-model-definition/src/test/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelAndOtherFieldAgentScript.groovy
M pom.xml
Log Message:
-----------
Merge branch 'master' into jenkins-37823-mk2
Conflicts:
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
Commit: 8939d475d8547fc72ba92b089c4a4d5a9fd9f347
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/8939d475d8547fc72ba92b089c4a4d5a9fd9f347
Author: Andrew Bayer <[email protected]>
Date: 2016-11-01 (Tue, 01 Nov 2016)
Changed paths:
M SYNTAX.md
Log Message:
-----------
Merge pull request #43 from PaddyOH/patch-1
Update SYNTAX.md
Commit: daff9155924c21362e224619183edd0463ba4fb9
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/daff9155924c21362e224619183edd0463ba4fb9
Author: Andrew Bayer <[email protected]>
Date: 2016-11-01 (Tue, 01 Nov 2016)
Changed paths:
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
Log Message:
-----------
Fixing merge
Commit: 91f0ec0f5283f0f163378773ee8cdbf74953fa71
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/91f0ec0f5283f0f163378773ee8cdbf74953fa71
Author: Andrew Bayer <[email protected]>
Date: 2016-11-01 (Tue, 01 Nov 2016)
Changed paths:
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTPipelineDef.java
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTStep.java
A
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTWrapper.java
A
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTWrappers.java
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidator.java
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Root.groovy
A
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Wrappers.groovy
A
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/WrappersToMap.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/JSONParser.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ModelParser.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
M pipeline-model-definition/src/main/resources/ast-schema.json
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ClosureModelTranslator.groovy
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/WrappersToMapTranslator.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ValidatorTest.java
A
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/WrappersTest.java
A
pipeline-model-definition/src/test/resources/errors/invalidWrapperType.groovy
A
pipeline-model-definition/src/test/resources/json/errors/invalidWrapperType.json
A pipeline-model-definition/src/test/resources/json/multipleWrappers.json
A pipeline-model-definition/src/test/resources/json/simpleWrapper.json
A pipeline-model-definition/src/test/resources/multipleWrappers.groovy
A pipeline-model-definition/src/test/resources/simpleWrapper.groovy
Log Message:
-----------
Merge pull request #36 from abayer/jenkins-37823-mk2
[FIXED JENKINS-37823] Added "wrappers" section.
Commit: 5bb4e3751245c0e741357ef4a635cda115c0ca43
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/5bb4e3751245c0e741357ef4a635cda115c0ca43
Author: Andrew Bayer <[email protected]>
Date: 2016-11-01 (Tue, 01 Nov 2016)
Changed paths:
M pipeline-model-definition/pom.xml
Log Message:
-----------
Adding compatibleSinceVersion of 0.5
Commit: 38908523853f00c13455b0248a8c87ab5953c9ab
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/38908523853f00c13455b0248a8c87ab5953c9ab
Author: Andrew Bayer <[email protected]>
Date: 2016-11-01 (Tue, 01 Nov 2016)
Changed paths:
M pom.xml
Log Message:
-----------
Tweaks for memory and concurrency on test runs
Commit: d65d3dc3117f30a4502cfa7ad48c7494b9c0915d
https://github.com/jenkinsci/pipeline-model-definition-plugin/commit/d65d3dc3117f30a4502cfa7ad48c7494b9c0915d
Author: Robert Sandell <[email protected]>
Date: 2016-11-02 (Wed, 02 Nov 2016)
Changed paths:
M README.md
M SYNTAX.md
M pipeline-model-api/pom.xml
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTPipelineDef.java
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTStage.java
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTStep.java
A
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTWrapper.java
A
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTWrappers.java
M
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidator.java
A pipeline-model-declarative-agent/pom.xml
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgent.java
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentDescriptor.java
A
pipeline-model-declarative-agent/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/DeclarativeAgentScript.java
M pipeline-model-definition/pom.xml
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Agent.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Root.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Stage.groovy
A
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Wrappers.groovy
A
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/WrappersToMap.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/JSONParser.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ModelParser.groovy
M
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/Any.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/DockerPipeline.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/Label.java
A
pipeline-model-definition/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/None.java
M pipeline-model-definition/src/main/resources/ast-schema.json
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ClosureModelTranslator.groovy
M
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/WrappersToMapTranslator.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/DockerPipelineScript.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelScript.groovy
A
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/NoneScript.groovy
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AbstractModelDefTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/AgentTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/EnvironmentTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ToolsTest.java
M
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/ValidatorTest.java
A
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/WrappersTest.java
A
pipeline-model-definition/src/test/java/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelAndOtherFieldAgent.java
A pipeline-model-definition/src/test/resources/agentAnyInStage.groovy
A pipeline-model-definition/src/test/resources/agentTypeOrdering.groovy
A pipeline-model-definition/src/test/resources/environmentInStage.groovy
A
pipeline-model-definition/src/test/resources/errors/agentMissingRequiredParam.groovy
A
pipeline-model-definition/src/test/resources/errors/agentUnknownParamForType.groovy
A
pipeline-model-definition/src/test/resources/errors/invalidWrapperType.groovy
A
pipeline-model-definition/src/test/resources/errors/unknownAgentType.groovy
A
pipeline-model-definition/src/test/resources/errors/unknownBareAgentType.groovy
A pipeline-model-definition/src/test/resources/json/agentTypeOrdering.json
A pipeline-model-definition/src/test/resources/json/environmentInStage.json
A
pipeline-model-definition/src/test/resources/json/errors/agentMissingRequiredParam.json
A
pipeline-model-definition/src/test/resources/json/errors/agentUnknownParamForType.json
A
pipeline-model-definition/src/test/resources/json/errors/invalidWrapperType.json
A
pipeline-model-definition/src/test/resources/json/errors/unknownAgentType.json
A
pipeline-model-definition/src/test/resources/json/errors/unknownBareAgentType.json
A pipeline-model-definition/src/test/resources/json/multipleWrappers.json
A pipeline-model-definition/src/test/resources/json/simpleWrapper.json
A pipeline-model-definition/src/test/resources/json/toolsInStage.json
A pipeline-model-definition/src/test/resources/multipleWrappers.groovy
A
pipeline-model-definition/src/test/resources/org/jenkinsci/plugins/pipeline/modeldefinition/agent/impl/LabelAndOtherFieldAgentScript.groovy
A pipeline-model-definition/src/test/resources/simpleWrapper.groovy
A pipeline-model-definition/src/test/resources/toolsInStage.groovy
M pom.xml
Log Message:
-----------
Merge branch 'master' of
github.com:jenkinsci/pipeline-model-definition-plugin into JENKINS-37781
Conflicts:
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/ast/ModelASTStage.java
pipeline-model-api/src/main/java/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidator.java
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/model/Stage.groovy
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/JSONParser.groovy
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/parser/ModelParser.groovy
pipeline-model-definition/src/main/groovy/org/jenkinsci/plugins/pipeline/modeldefinition/validator/ModelValidatorImpl.groovy
pipeline-model-definition/src/main/resources/org/jenkinsci/plugins/pipeline/modeldefinition/ModelInterpreter.groovy
Compare:
https://github.com/jenkinsci/pipeline-model-definition-plugin/compare/eddf70b8c574...d65d3dc3117f
--
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.