-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gh-133 Integrate Jenkinsfile during preSCM step and reuse the SHA1 - …
…part 1
- Loading branch information
Claus Schneider (Praqma)
committed
Aug 15, 2018
1 parent
335307c
commit 6f71c92
Showing
7 changed files
with
54 additions
and
29 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
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<flow-definition plugin="workflow-job@2.11.2"> | ||
<flow-definition plugin="workflow-job@2.9"> | ||
<actions/> | ||
<description></description> | ||
<keepDependencies>false</keepDependencies> | ||
|
@@ -13,7 +13,7 @@ | |
</triggers> | ||
</org.jenkinsci.plugins.workflow.job.properties.PipelineTriggersJobProperty> | ||
</properties> | ||
<definition class="org.jenkinsci.plugins.workflow.cps.CpsScmFlowDefinition" plugin="workflow-cps@2.39"> | ||
<definition class="org.jenkinsci.plugins.workflow.cps.CpsScmFlowDefinition" plugin="workflow-cps@2.24"> | ||
<scm class="hudson.plugins.git.GitSCM" plugin="[email protected]"> | ||
<configVersion>2</configVersion> | ||
<userRemoteConfigs> | ||
|
@@ -29,15 +29,21 @@ | |
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations> | ||
<submoduleCfg class="list"/> | ||
<extensions> | ||
<org.jenkinsci.plugins.pretestedintegration.scm.git.PretestedIntegrationAsGitPluginExt plugin="[email protected].0-SNAPSHOT"> | ||
<org.jenkinsci.plugins.pretestedintegration.scm.git.PretestedIntegrationAsGitPluginExt plugin="[email protected].2-SNAPSHOT"> | ||
<integrationBranch>masterPipeScriptedSCM</integrationBranch> | ||
<repoName>origin</repoName> | ||
<gitIntegrationStrategy class="org.jenkinsci.plugins.pretestedintegration.scm.git.AccumulatedCommitStrategy"/> | ||
<gitIntegrationStrategy class="org.jenkinsci.plugins.pretestedintegration.scm.git.AccumulatedCommitStrategy"> | ||
<shortCommitMessage>false</shortCommitMessage> | ||
</gitIntegrationStrategy> | ||
</org.jenkinsci.plugins.pretestedintegration.scm.git.PretestedIntegrationAsGitPluginExt> | ||
<hudson.plugins.git.extensions.impl.ChangelogToBranch> | ||
<options> | ||
<compareRemote>origin</compareRemote> | ||
<compareTarget>masterPipeScriptedSCM</compareTarget> | ||
</options> | ||
</hudson.plugins.git.extensions.impl.ChangelogToBranch> | ||
</extensions> | ||
</scm> | ||
<scriptPath>JenkinsfileScripted</scriptPath> | ||
<lightweight>false</lightweight> | ||
</definition> | ||
<disabled>false</disabled> | ||
</flow-definition> |