fastlane-plugin-jenkins_job_config 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/LICENSE +21 -21
- data/README.md +52 -52
- data/lib/fastlane/plugin/jenkins_job_config.rb +16 -16
- data/lib/fastlane/plugin/jenkins_job_config/actions/jenkins_job_config_action.rb +183 -183
- data/lib/fastlane/plugin/jenkins_job_config/helper/jenkins_job_config_helper.rb +12 -12
- data/lib/fastlane/plugin/jenkins_job_config/templates/android_config.xml.erb +146 -146
- data/lib/fastlane/plugin/jenkins_job_config/templates/default_config.xml.erb +142 -134
- data/lib/fastlane/plugin/jenkins_job_config/templates/ios_config.xml.erb +150 -150
- data/lib/fastlane/plugin/jenkins_job_config/templates/unity_package_config.xml.erb +146 -146
- data/lib/fastlane/plugin/jenkins_job_config/templates/windows_config.xml.erb +146 -146
- data/lib/fastlane/plugin/jenkins_job_config/version.rb +5 -5
- metadata +3 -3
@@ -1,150 +1,150 @@
|
|
1
|
-
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
-
<project>
|
3
|
-
<actions/>
|
4
|
-
<description><%= description %></description>
|
5
|
-
<keepDependencies>false</keepDependencies>
|
6
|
-
<properties>
|
7
|
-
<hudson.plugins.batch__task.BatchTaskProperty plugin="batch-task@1.19">
|
8
|
-
<tasks>
|
9
|
-
<% extra_tasks.each do |key, value| %> <hudson.plugins.batch__task.BatchTask>
|
10
|
-
<name><%= key %></name>
|
11
|
-
<script><%= value %></script>
|
12
|
-
</hudson.plugins.batch__task.BatchTask>
|
13
|
-
<% end %>
|
14
|
-
</tasks>
|
15
|
-
</hudson.plugins.batch__task.BatchTaskProperty>
|
16
|
-
<jenkins.model.BuildDiscarderProperty>
|
17
|
-
<strategy class="hudson.tasks.LogRotator">
|
18
|
-
<daysToKeep>-1</daysToKeep>
|
19
|
-
<numToKeep>30</numToKeep>
|
20
|
-
<artifactDaysToKeep>-1</artifactDaysToKeep>
|
21
|
-
<artifactNumToKeep>30</artifactNumToKeep>
|
22
|
-
</strategy>
|
23
|
-
</jenkins.model.BuildDiscarderProperty>
|
24
|
-
<% parameters.each do |key,value| %> <hudson.model.ParametersDefinitionProperty>
|
25
|
-
<parameterDefinitions>
|
26
|
-
<hudson.model.ChoiceParameterDefinition>
|
27
|
-
<name><%= key %></name>
|
28
|
-
<description></description>
|
29
|
-
<choices class="java.util.Arrays$ArrayList">
|
30
|
-
<a class="string-array"><% for @item in value %>
|
31
|
-
<string><%= @item %></string><% end %>
|
32
|
-
</a>
|
33
|
-
</choices>
|
34
|
-
</hudson.model.ChoiceParameterDefinition>
|
35
|
-
</parameterDefinitions>
|
36
|
-
</hudson.model.ParametersDefinitionProperty><% end %>
|
37
|
-
<de.pellepelster.jenkins.walldisplay.WallDisplayJobProperty plugin="jenkinswalldisplay@0.6.34"/>
|
38
|
-
<hudson.plugins.disk__usage.DiskUsageProperty plugin="disk-usage@0.28"/>
|
39
|
-
</properties>
|
40
|
-
<scm class="hudson.plugins.git.GitSCM" plugin="git@3.3.0">
|
41
|
-
<configVersion>2</configVersion>
|
42
|
-
<userRemoteConfigs>
|
43
|
-
<hudson.plugins.git.UserRemoteConfig>
|
44
|
-
<url><%= git_url %></url>
|
45
|
-
</hudson.plugins.git.UserRemoteConfig>
|
46
|
-
</userRemoteConfigs>
|
47
|
-
<branches>
|
48
|
-
<hudson.plugins.git.BranchSpec>
|
49
|
-
<name><%= git_branch %></name>
|
50
|
-
</hudson.plugins.git.BranchSpec>
|
51
|
-
</branches>
|
52
|
-
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
53
|
-
<browser class="hudson.plugins.git.browser.BitbucketWeb">
|
54
|
-
<url></url>
|
55
|
-
</browser>
|
56
|
-
<submoduleCfg class="list"/>
|
57
|
-
<extensions>
|
58
|
-
<hudson.plugins.git.extensions.impl.CloneOption>
|
59
|
-
<shallow>false</shallow>
|
60
|
-
<noTags>false</noTags>
|
61
|
-
<reference>$GIT_CLONES/<%= git_project %></reference>
|
62
|
-
<timeout>30</timeout>
|
63
|
-
<depth>0</depth>
|
64
|
-
<honorRefspec>false</honorRefspec>
|
65
|
-
</hudson.plugins.git.extensions.impl.CloneOption>
|
66
|
-
</extensions>
|
67
|
-
</scm>
|
68
|
-
<assignedNode>unity_macosx_slave</assignedNode>
|
69
|
-
<canRoam>false</canRoam>
|
70
|
-
<disabled>false</disabled>
|
71
|
-
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
|
72
|
-
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
73
|
-
<jdk>(Default)</jdk>
|
74
|
-
<triggers>
|
75
|
-
<hudson.triggers.SCMTrigger>
|
76
|
-
<spec>@yearly</spec>
|
77
|
-
<ignorePostCommitHooks>false</ignorePostCommitHooks>
|
78
|
-
</hudson.triggers.SCMTrigger>
|
79
|
-
</triggers>
|
80
|
-
<concurrentBuild>false</concurrentBuild>
|
81
|
-
<builders>
|
82
|
-
<hudson.tasks.Shell>
|
83
|
-
<command><%= command %></command>
|
84
|
-
</hudson.tasks.Shell>
|
85
|
-
</builders>
|
86
|
-
<publishers>
|
87
|
-
<hudson.plugins.logparser.LogParserPublisher plugin="log-parser@2.0">
|
88
|
-
<unstableOnWarning>false</unstableOnWarning>
|
89
|
-
<failBuildOnError>false</failBuildOnError>
|
90
|
-
<showGraphs>false</showGraphs>
|
91
|
-
<parsingRulesPath>/Users/Shared/Jenkins/Home/userContent/unity3d.rules</parsingRulesPath>
|
92
|
-
<useProjectRule>false</useProjectRule>
|
93
|
-
</hudson.plugins.logparser.LogParserPublisher>
|
94
|
-
<hudson.tasks.junit.JUnitResultArchiver plugin="junit@1.19">
|
95
|
-
<testResults>fastlane/report.xml</testResults>
|
96
|
-
<keepLongStdio>false</keepLongStdio>
|
97
|
-
<healthScaleFactor>1.0</healthScaleFactor>
|
98
|
-
<allowEmptyResults>false</allowEmptyResults>
|
99
|
-
</hudson.tasks.junit.JUnitResultArchiver>
|
100
|
-
<hudson.tasks.Mailer plugin="mailer@1.20">
|
101
|
-
<recipients>dev@wewanttoknow.com</recipients>
|
102
|
-
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
|
103
|
-
<sendToIndividuals>false</sendToIndividuals>
|
104
|
-
</hudson.tasks.Mailer>
|
105
|
-
<% if !artifacts.nil? && artifacts.length != 0 %> <hudson.tasks.ArtifactArchiver>
|
106
|
-
<artifacts><%= artifacts.join(', ') %></artifacts>
|
107
|
-
<allowEmptyArchive>true</allowEmptyArchive>
|
108
|
-
<onlyIfSuccessful>false</onlyIfSuccessful>
|
109
|
-
<fingerprint>false</fingerprint>
|
110
|
-
<defaultExcludes>true</defaultExcludes>
|
111
|
-
<caseSensitive>true</caseSensitive>
|
112
|
-
</hudson.tasks.ArtifactArchiver>
|
113
|
-
<% end %>
|
114
|
-
</publishers>
|
115
|
-
<buildWrappers>
|
116
|
-
<hudson.plugins.build__timeout.BuildTimeoutWrapper plugin="build-timeout@1.18">
|
117
|
-
<strategy class="hudson.plugins.build_timeout.impl.AbsoluteTimeOutStrategy">
|
118
|
-
<timeoutMinutes><%= timeout_param %></timeoutMinutes>
|
119
|
-
</strategy>
|
120
|
-
<operationList/>
|
121
|
-
</hudson.plugins.build__timeout.BuildTimeoutWrapper>
|
122
|
-
<hudson.plugins.ansicolor.AnsiColorBuildWrapper plugin="ansicolor@0.5.0">
|
123
|
-
<colorMapName>xterm</colorMapName>
|
124
|
-
</hudson.plugins.ansicolor.AnsiColorBuildWrapper>
|
125
|
-
<ruby-proxy-object>
|
126
|
-
<ruby-object ruby-class="Jenkins::Tasks::BuildWrapperProxy" pluginid="rvm">
|
127
|
-
<object ruby-class="RvmWrapper" pluginid="rvm">
|
128
|
-
<impl pluginid="rvm" ruby-class="String">.</impl>
|
129
|
-
</object>
|
130
|
-
<pluginid pluginid="rvm" ruby-class="String">rvm</pluginid>
|
131
|
-
</ruby-object>
|
132
|
-
</ruby-proxy-object>
|
133
|
-
<org.jenkinsci.plugins.credentialsbinding.impl.SecretBuildWrapper plugin="credentials-binding@1.11">
|
134
|
-
<bindings>
|
135
|
-
<org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
136
|
-
<credentialsId>MATCH_PASSWORD</credentialsId>
|
137
|
-
<variable>MATCH_PASSWORD</variable>
|
138
|
-
</org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
139
|
-
<org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
140
|
-
<credentialsId>FASTLANE_KEYCHAIN_PASSWORD</credentialsId>
|
141
|
-
<variable>FL_UNLOCK_KEYCHAIN_PASSWORD</variable>
|
142
|
-
</org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
143
|
-
<% extra_credentials.each do |key, value| %><org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
144
|
-
<credentialsId><%= key %></credentialsId>
|
145
|
-
<variable><%= value %></variable>
|
146
|
-
</org.jenkinsci.plugins.credentialsbinding.impl.StringBinding><% end %>
|
147
|
-
</bindings>
|
148
|
-
</org.jenkinsci.plugins.credentialsbinding.impl.SecretBuildWrapper>
|
149
|
-
</buildWrappers>
|
150
|
-
</project>
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
+
<project>
|
3
|
+
<actions/>
|
4
|
+
<description><%= description %></description>
|
5
|
+
<keepDependencies>false</keepDependencies>
|
6
|
+
<properties>
|
7
|
+
<hudson.plugins.batch__task.BatchTaskProperty plugin="batch-task@1.19">
|
8
|
+
<tasks>
|
9
|
+
<% extra_tasks.each do |key, value| %> <hudson.plugins.batch__task.BatchTask>
|
10
|
+
<name><%= key %></name>
|
11
|
+
<script><%= value %></script>
|
12
|
+
</hudson.plugins.batch__task.BatchTask>
|
13
|
+
<% end %>
|
14
|
+
</tasks>
|
15
|
+
</hudson.plugins.batch__task.BatchTaskProperty>
|
16
|
+
<jenkins.model.BuildDiscarderProperty>
|
17
|
+
<strategy class="hudson.tasks.LogRotator">
|
18
|
+
<daysToKeep>-1</daysToKeep>
|
19
|
+
<numToKeep>30</numToKeep>
|
20
|
+
<artifactDaysToKeep>-1</artifactDaysToKeep>
|
21
|
+
<artifactNumToKeep>30</artifactNumToKeep>
|
22
|
+
</strategy>
|
23
|
+
</jenkins.model.BuildDiscarderProperty>
|
24
|
+
<% parameters.each do |key,value| %> <hudson.model.ParametersDefinitionProperty>
|
25
|
+
<parameterDefinitions>
|
26
|
+
<hudson.model.ChoiceParameterDefinition>
|
27
|
+
<name><%= key %></name>
|
28
|
+
<description></description>
|
29
|
+
<choices class="java.util.Arrays$ArrayList">
|
30
|
+
<a class="string-array"><% for @item in value %>
|
31
|
+
<string><%= @item %></string><% end %>
|
32
|
+
</a>
|
33
|
+
</choices>
|
34
|
+
</hudson.model.ChoiceParameterDefinition>
|
35
|
+
</parameterDefinitions>
|
36
|
+
</hudson.model.ParametersDefinitionProperty><% end %>
|
37
|
+
<de.pellepelster.jenkins.walldisplay.WallDisplayJobProperty plugin="jenkinswalldisplay@0.6.34"/>
|
38
|
+
<hudson.plugins.disk__usage.DiskUsageProperty plugin="disk-usage@0.28"/>
|
39
|
+
</properties>
|
40
|
+
<scm class="hudson.plugins.git.GitSCM" plugin="git@3.3.0">
|
41
|
+
<configVersion>2</configVersion>
|
42
|
+
<userRemoteConfigs>
|
43
|
+
<hudson.plugins.git.UserRemoteConfig>
|
44
|
+
<url><%= git_url %></url>
|
45
|
+
</hudson.plugins.git.UserRemoteConfig>
|
46
|
+
</userRemoteConfigs>
|
47
|
+
<branches>
|
48
|
+
<hudson.plugins.git.BranchSpec>
|
49
|
+
<name><%= git_branch %></name>
|
50
|
+
</hudson.plugins.git.BranchSpec>
|
51
|
+
</branches>
|
52
|
+
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
53
|
+
<browser class="hudson.plugins.git.browser.BitbucketWeb">
|
54
|
+
<url></url>
|
55
|
+
</browser>
|
56
|
+
<submoduleCfg class="list"/>
|
57
|
+
<extensions>
|
58
|
+
<hudson.plugins.git.extensions.impl.CloneOption>
|
59
|
+
<shallow>false</shallow>
|
60
|
+
<noTags>false</noTags>
|
61
|
+
<reference>$GIT_CLONES/<%= git_project %></reference>
|
62
|
+
<timeout>30</timeout>
|
63
|
+
<depth>0</depth>
|
64
|
+
<honorRefspec>false</honorRefspec>
|
65
|
+
</hudson.plugins.git.extensions.impl.CloneOption>
|
66
|
+
</extensions>
|
67
|
+
</scm>
|
68
|
+
<assignedNode>unity_macosx_slave</assignedNode>
|
69
|
+
<canRoam>false</canRoam>
|
70
|
+
<disabled>false</disabled>
|
71
|
+
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
|
72
|
+
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
73
|
+
<jdk>(Default)</jdk>
|
74
|
+
<triggers>
|
75
|
+
<hudson.triggers.SCMTrigger>
|
76
|
+
<spec>@yearly</spec>
|
77
|
+
<ignorePostCommitHooks>false</ignorePostCommitHooks>
|
78
|
+
</hudson.triggers.SCMTrigger>
|
79
|
+
</triggers>
|
80
|
+
<concurrentBuild>false</concurrentBuild>
|
81
|
+
<builders>
|
82
|
+
<hudson.tasks.Shell>
|
83
|
+
<command><%= command %></command>
|
84
|
+
</hudson.tasks.Shell>
|
85
|
+
</builders>
|
86
|
+
<publishers>
|
87
|
+
<hudson.plugins.logparser.LogParserPublisher plugin="log-parser@2.0">
|
88
|
+
<unstableOnWarning>false</unstableOnWarning>
|
89
|
+
<failBuildOnError>false</failBuildOnError>
|
90
|
+
<showGraphs>false</showGraphs>
|
91
|
+
<parsingRulesPath>/Users/Shared/Jenkins/Home/userContent/unity3d.rules</parsingRulesPath>
|
92
|
+
<useProjectRule>false</useProjectRule>
|
93
|
+
</hudson.plugins.logparser.LogParserPublisher>
|
94
|
+
<hudson.tasks.junit.JUnitResultArchiver plugin="junit@1.19">
|
95
|
+
<testResults>fastlane/report.xml</testResults>
|
96
|
+
<keepLongStdio>false</keepLongStdio>
|
97
|
+
<healthScaleFactor>1.0</healthScaleFactor>
|
98
|
+
<allowEmptyResults>false</allowEmptyResults>
|
99
|
+
</hudson.tasks.junit.JUnitResultArchiver>
|
100
|
+
<hudson.tasks.Mailer plugin="mailer@1.20">
|
101
|
+
<recipients>dev@wewanttoknow.com</recipients>
|
102
|
+
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
|
103
|
+
<sendToIndividuals>false</sendToIndividuals>
|
104
|
+
</hudson.tasks.Mailer>
|
105
|
+
<% if !artifacts.nil? && artifacts.length != 0 %> <hudson.tasks.ArtifactArchiver>
|
106
|
+
<artifacts><%= artifacts.join(', ') %></artifacts>
|
107
|
+
<allowEmptyArchive>true</allowEmptyArchive>
|
108
|
+
<onlyIfSuccessful>false</onlyIfSuccessful>
|
109
|
+
<fingerprint>false</fingerprint>
|
110
|
+
<defaultExcludes>true</defaultExcludes>
|
111
|
+
<caseSensitive>true</caseSensitive>
|
112
|
+
</hudson.tasks.ArtifactArchiver>
|
113
|
+
<% end %>
|
114
|
+
</publishers>
|
115
|
+
<buildWrappers>
|
116
|
+
<hudson.plugins.build__timeout.BuildTimeoutWrapper plugin="build-timeout@1.18">
|
117
|
+
<strategy class="hudson.plugins.build_timeout.impl.AbsoluteTimeOutStrategy">
|
118
|
+
<timeoutMinutes><%= timeout_param %></timeoutMinutes>
|
119
|
+
</strategy>
|
120
|
+
<operationList/>
|
121
|
+
</hudson.plugins.build__timeout.BuildTimeoutWrapper>
|
122
|
+
<hudson.plugins.ansicolor.AnsiColorBuildWrapper plugin="ansicolor@0.5.0">
|
123
|
+
<colorMapName>xterm</colorMapName>
|
124
|
+
</hudson.plugins.ansicolor.AnsiColorBuildWrapper>
|
125
|
+
<ruby-proxy-object>
|
126
|
+
<ruby-object ruby-class="Jenkins::Tasks::BuildWrapperProxy" pluginid="rvm">
|
127
|
+
<object ruby-class="RvmWrapper" pluginid="rvm">
|
128
|
+
<impl pluginid="rvm" ruby-class="String">.</impl>
|
129
|
+
</object>
|
130
|
+
<pluginid pluginid="rvm" ruby-class="String">rvm</pluginid>
|
131
|
+
</ruby-object>
|
132
|
+
</ruby-proxy-object>
|
133
|
+
<org.jenkinsci.plugins.credentialsbinding.impl.SecretBuildWrapper plugin="credentials-binding@1.11">
|
134
|
+
<bindings>
|
135
|
+
<org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
136
|
+
<credentialsId>MATCH_PASSWORD</credentialsId>
|
137
|
+
<variable>MATCH_PASSWORD</variable>
|
138
|
+
</org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
139
|
+
<org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
140
|
+
<credentialsId>FASTLANE_KEYCHAIN_PASSWORD</credentialsId>
|
141
|
+
<variable>FL_UNLOCK_KEYCHAIN_PASSWORD</variable>
|
142
|
+
</org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
143
|
+
<% extra_credentials.each do |key, value| %><org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
144
|
+
<credentialsId><%= key %></credentialsId>
|
145
|
+
<variable><%= value %></variable>
|
146
|
+
</org.jenkinsci.plugins.credentialsbinding.impl.StringBinding><% end %>
|
147
|
+
</bindings>
|
148
|
+
</org.jenkinsci.plugins.credentialsbinding.impl.SecretBuildWrapper>
|
149
|
+
</buildWrappers>
|
150
|
+
</project>
|
@@ -1,146 +1,146 @@
|
|
1
|
-
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
-
<project>
|
3
|
-
<actions/>
|
4
|
-
<description><%= description %></description>
|
5
|
-
<keepDependencies>false</keepDependencies>
|
6
|
-
<properties>
|
7
|
-
<hudson.plugins.batch__task.BatchTaskProperty plugin="batch-task@1.19">
|
8
|
-
<tasks>
|
9
|
-
<% extra_tasks.each do |key, value| %> <hudson.plugins.batch__task.BatchTask>
|
10
|
-
<name><%= key %></name>
|
11
|
-
<script><%= value %></script>
|
12
|
-
</hudson.plugins.batch__task.BatchTask>
|
13
|
-
<% end %>
|
14
|
-
</tasks>
|
15
|
-
</hudson.plugins.batch__task.BatchTaskProperty>
|
16
|
-
<jenkins.model.BuildDiscarderProperty>
|
17
|
-
<strategy class="hudson.tasks.LogRotator">
|
18
|
-
<daysToKeep>-1</daysToKeep>
|
19
|
-
<numToKeep>30</numToKeep>
|
20
|
-
<artifactDaysToKeep>-1</artifactDaysToKeep>
|
21
|
-
<artifactNumToKeep>30</artifactNumToKeep>
|
22
|
-
</strategy>
|
23
|
-
</jenkins.model.BuildDiscarderProperty>
|
24
|
-
<% parameters.each do |key,value| %> <hudson.model.ParametersDefinitionProperty>
|
25
|
-
<parameterDefinitions>
|
26
|
-
<hudson.model.ChoiceParameterDefinition>
|
27
|
-
<name><%= key %></name>
|
28
|
-
<description></description>
|
29
|
-
<choices class="java.util.Arrays$ArrayList">
|
30
|
-
<a class="string-array"><% for @item in value %>
|
31
|
-
<string><%= @item %></string><% end %>
|
32
|
-
</a>
|
33
|
-
</choices>
|
34
|
-
</hudson.model.ChoiceParameterDefinition>
|
35
|
-
</parameterDefinitions>
|
36
|
-
</hudson.model.ParametersDefinitionProperty><% end %>
|
37
|
-
<de.pellepelster.jenkins.walldisplay.WallDisplayJobProperty plugin="jenkinswalldisplay@0.6.34"/>
|
38
|
-
<hudson.plugins.disk__usage.DiskUsageProperty plugin="disk-usage@0.28"/>
|
39
|
-
</properties>
|
40
|
-
<scm class="hudson.plugins.git.GitSCM" plugin="git@3.3.0">
|
41
|
-
<configVersion>2</configVersion>
|
42
|
-
<userRemoteConfigs>
|
43
|
-
<hudson.plugins.git.UserRemoteConfig>
|
44
|
-
<url><%= git_url %></url>
|
45
|
-
</hudson.plugins.git.UserRemoteConfig>
|
46
|
-
</userRemoteConfigs>
|
47
|
-
<branches>
|
48
|
-
<hudson.plugins.git.BranchSpec>
|
49
|
-
<name><%= git_branch %></name>
|
50
|
-
</hudson.plugins.git.BranchSpec>
|
51
|
-
</branches>
|
52
|
-
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
53
|
-
<browser class="hudson.plugins.git.browser.BitbucketWeb">
|
54
|
-
<url></url>
|
55
|
-
</browser>
|
56
|
-
<submoduleCfg class="list"/>
|
57
|
-
<extensions>
|
58
|
-
<hudson.plugins.git.extensions.impl.CloneOption>
|
59
|
-
<shallow>false</shallow>
|
60
|
-
<noTags>false</noTags>
|
61
|
-
<reference>$GIT_CLONES/<%= git_project %></reference>
|
62
|
-
<timeout>30</timeout>
|
63
|
-
<depth>0</depth>
|
64
|
-
<honorRefspec>false</honorRefspec>
|
65
|
-
</hudson.plugins.git.extensions.impl.CloneOption>
|
66
|
-
</extensions>
|
67
|
-
</scm>
|
68
|
-
<assignedNode>unity_macosx_slave</assignedNode>
|
69
|
-
<canRoam>false</canRoam>
|
70
|
-
<disabled>false</disabled>
|
71
|
-
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
|
72
|
-
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
73
|
-
<jdk>1.8.0_112</jdk>
|
74
|
-
<triggers>
|
75
|
-
<hudson.triggers.SCMTrigger>
|
76
|
-
<spec>@yearly</spec>
|
77
|
-
<ignorePostCommitHooks>false</ignorePostCommitHooks>
|
78
|
-
</hudson.triggers.SCMTrigger>
|
79
|
-
</triggers>
|
80
|
-
<concurrentBuild>false</concurrentBuild>
|
81
|
-
<builders>
|
82
|
-
<hudson.tasks.Shell>
|
83
|
-
<command><%= command %></command>
|
84
|
-
</hudson.tasks.Shell>
|
85
|
-
</builders>
|
86
|
-
<publishers>
|
87
|
-
<hudson.plugins.logparser.LogParserPublisher plugin="log-parser@2.0">
|
88
|
-
<unstableOnWarning>false</unstableOnWarning>
|
89
|
-
<failBuildOnError>false</failBuildOnError>
|
90
|
-
<showGraphs>false</showGraphs>
|
91
|
-
<parsingRulesPath>/Users/Shared/Jenkins/Home/userContent/unity3d.rules</parsingRulesPath>
|
92
|
-
<useProjectRule>false</useProjectRule>
|
93
|
-
</hudson.plugins.logparser.LogParserPublisher>
|
94
|
-
<hudson.tasks.junit.JUnitResultArchiver plugin="junit@1.19">
|
95
|
-
<testResults>fastlane/report.xml</testResults>
|
96
|
-
<keepLongStdio>false</keepLongStdio>
|
97
|
-
<healthScaleFactor>1.0</healthScaleFactor>
|
98
|
-
<allowEmptyResults>false</allowEmptyResults>
|
99
|
-
</hudson.tasks.junit.JUnitResultArchiver>
|
100
|
-
<hudson.tasks.Mailer plugin="mailer@1.20">
|
101
|
-
<recipients>dev@wewanttoknow.com</recipients>
|
102
|
-
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
|
103
|
-
<sendToIndividuals>false</sendToIndividuals>
|
104
|
-
</hudson.tasks.Mailer>
|
105
|
-
<% if !artifacts.nil? && artifacts.length != 0 %> <hudson.tasks.ArtifactArchiver>
|
106
|
-
<artifacts><%= artifacts.join(', ') %></artifacts>
|
107
|
-
<allowEmptyArchive>true</allowEmptyArchive>
|
108
|
-
<onlyIfSuccessful>false</onlyIfSuccessful>
|
109
|
-
<fingerprint>false</fingerprint>
|
110
|
-
<defaultExcludes>true</defaultExcludes>
|
111
|
-
<caseSensitive>true</caseSensitive>
|
112
|
-
</hudson.tasks.ArtifactArchiver>
|
113
|
-
<% end %>
|
114
|
-
</publishers>
|
115
|
-
<buildWrappers>
|
116
|
-
<hudson.plugins.build__timeout.BuildTimeoutWrapper plugin="build-timeout@1.18">
|
117
|
-
<strategy class="hudson.plugins.build_timeout.impl.AbsoluteTimeOutStrategy">
|
118
|
-
<timeoutMinutes><%= timeout_param %></timeoutMinutes>
|
119
|
-
</strategy>
|
120
|
-
<operationList/>
|
121
|
-
</hudson.plugins.build__timeout.BuildTimeoutWrapper>
|
122
|
-
<hudson.plugins.ansicolor.AnsiColorBuildWrapper plugin="ansicolor@0.4.1">
|
123
|
-
<colorMapName>xterm</colorMapName>
|
124
|
-
</hudson.plugins.ansicolor.AnsiColorBuildWrapper>
|
125
|
-
<ruby-proxy-object>
|
126
|
-
<ruby-object ruby-class="Jenkins::Tasks::BuildWrapperProxy" pluginid="rvm">
|
127
|
-
<object ruby-class="RvmWrapper" pluginid="rvm">
|
128
|
-
<impl pluginid="rvm" ruby-class="String">.</impl>
|
129
|
-
</object>
|
130
|
-
<pluginid pluginid="rvm" ruby-class="String">rvm</pluginid>
|
131
|
-
</ruby-object>
|
132
|
-
</ruby-proxy-object>
|
133
|
-
<org.jenkinsci.plugins.credentialsbinding.impl.SecretBuildWrapper plugin="credentials-binding@1.11">
|
134
|
-
<bindings>
|
135
|
-
<org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
136
|
-
<credentialsId>FASTLANE_PUBLISH_MODULE_GITHUB_REPO_TOKEN</credentialsId>
|
137
|
-
<variable>FASTLANE_PUBLISH_MODULE_GITHUB_REPO_TOKEN</variable>
|
138
|
-
</org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
139
|
-
<% extra_credentials.each do |key, value| %><org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
140
|
-
<credentialsId><%= key %></credentialsId>
|
141
|
-
<variable><%= value %></variable>
|
142
|
-
</org.jenkinsci.plugins.credentialsbinding.impl.StringBinding><% end %>
|
143
|
-
</bindings>
|
144
|
-
</org.jenkinsci.plugins.credentialsbinding.impl.SecretBuildWrapper>
|
145
|
-
</buildWrappers>
|
146
|
-
</project>
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
+
<project>
|
3
|
+
<actions/>
|
4
|
+
<description><%= description %></description>
|
5
|
+
<keepDependencies>false</keepDependencies>
|
6
|
+
<properties>
|
7
|
+
<hudson.plugins.batch__task.BatchTaskProperty plugin="batch-task@1.19">
|
8
|
+
<tasks>
|
9
|
+
<% extra_tasks.each do |key, value| %> <hudson.plugins.batch__task.BatchTask>
|
10
|
+
<name><%= key %></name>
|
11
|
+
<script><%= value %></script>
|
12
|
+
</hudson.plugins.batch__task.BatchTask>
|
13
|
+
<% end %>
|
14
|
+
</tasks>
|
15
|
+
</hudson.plugins.batch__task.BatchTaskProperty>
|
16
|
+
<jenkins.model.BuildDiscarderProperty>
|
17
|
+
<strategy class="hudson.tasks.LogRotator">
|
18
|
+
<daysToKeep>-1</daysToKeep>
|
19
|
+
<numToKeep>30</numToKeep>
|
20
|
+
<artifactDaysToKeep>-1</artifactDaysToKeep>
|
21
|
+
<artifactNumToKeep>30</artifactNumToKeep>
|
22
|
+
</strategy>
|
23
|
+
</jenkins.model.BuildDiscarderProperty>
|
24
|
+
<% parameters.each do |key,value| %> <hudson.model.ParametersDefinitionProperty>
|
25
|
+
<parameterDefinitions>
|
26
|
+
<hudson.model.ChoiceParameterDefinition>
|
27
|
+
<name><%= key %></name>
|
28
|
+
<description></description>
|
29
|
+
<choices class="java.util.Arrays$ArrayList">
|
30
|
+
<a class="string-array"><% for @item in value %>
|
31
|
+
<string><%= @item %></string><% end %>
|
32
|
+
</a>
|
33
|
+
</choices>
|
34
|
+
</hudson.model.ChoiceParameterDefinition>
|
35
|
+
</parameterDefinitions>
|
36
|
+
</hudson.model.ParametersDefinitionProperty><% end %>
|
37
|
+
<de.pellepelster.jenkins.walldisplay.WallDisplayJobProperty plugin="jenkinswalldisplay@0.6.34"/>
|
38
|
+
<hudson.plugins.disk__usage.DiskUsageProperty plugin="disk-usage@0.28"/>
|
39
|
+
</properties>
|
40
|
+
<scm class="hudson.plugins.git.GitSCM" plugin="git@3.3.0">
|
41
|
+
<configVersion>2</configVersion>
|
42
|
+
<userRemoteConfigs>
|
43
|
+
<hudson.plugins.git.UserRemoteConfig>
|
44
|
+
<url><%= git_url %></url>
|
45
|
+
</hudson.plugins.git.UserRemoteConfig>
|
46
|
+
</userRemoteConfigs>
|
47
|
+
<branches>
|
48
|
+
<hudson.plugins.git.BranchSpec>
|
49
|
+
<name><%= git_branch %></name>
|
50
|
+
</hudson.plugins.git.BranchSpec>
|
51
|
+
</branches>
|
52
|
+
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
53
|
+
<browser class="hudson.plugins.git.browser.BitbucketWeb">
|
54
|
+
<url></url>
|
55
|
+
</browser>
|
56
|
+
<submoduleCfg class="list"/>
|
57
|
+
<extensions>
|
58
|
+
<hudson.plugins.git.extensions.impl.CloneOption>
|
59
|
+
<shallow>false</shallow>
|
60
|
+
<noTags>false</noTags>
|
61
|
+
<reference>$GIT_CLONES/<%= git_project %></reference>
|
62
|
+
<timeout>30</timeout>
|
63
|
+
<depth>0</depth>
|
64
|
+
<honorRefspec>false</honorRefspec>
|
65
|
+
</hudson.plugins.git.extensions.impl.CloneOption>
|
66
|
+
</extensions>
|
67
|
+
</scm>
|
68
|
+
<assignedNode>unity_macosx_slave</assignedNode>
|
69
|
+
<canRoam>false</canRoam>
|
70
|
+
<disabled>false</disabled>
|
71
|
+
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
|
72
|
+
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
73
|
+
<jdk>1.8.0_112</jdk>
|
74
|
+
<triggers>
|
75
|
+
<hudson.triggers.SCMTrigger>
|
76
|
+
<spec>@yearly</spec>
|
77
|
+
<ignorePostCommitHooks>false</ignorePostCommitHooks>
|
78
|
+
</hudson.triggers.SCMTrigger>
|
79
|
+
</triggers>
|
80
|
+
<concurrentBuild>false</concurrentBuild>
|
81
|
+
<builders>
|
82
|
+
<hudson.tasks.Shell>
|
83
|
+
<command><%= command %></command>
|
84
|
+
</hudson.tasks.Shell>
|
85
|
+
</builders>
|
86
|
+
<publishers>
|
87
|
+
<hudson.plugins.logparser.LogParserPublisher plugin="log-parser@2.0">
|
88
|
+
<unstableOnWarning>false</unstableOnWarning>
|
89
|
+
<failBuildOnError>false</failBuildOnError>
|
90
|
+
<showGraphs>false</showGraphs>
|
91
|
+
<parsingRulesPath>/Users/Shared/Jenkins/Home/userContent/unity3d.rules</parsingRulesPath>
|
92
|
+
<useProjectRule>false</useProjectRule>
|
93
|
+
</hudson.plugins.logparser.LogParserPublisher>
|
94
|
+
<hudson.tasks.junit.JUnitResultArchiver plugin="junit@1.19">
|
95
|
+
<testResults>fastlane/report.xml</testResults>
|
96
|
+
<keepLongStdio>false</keepLongStdio>
|
97
|
+
<healthScaleFactor>1.0</healthScaleFactor>
|
98
|
+
<allowEmptyResults>false</allowEmptyResults>
|
99
|
+
</hudson.tasks.junit.JUnitResultArchiver>
|
100
|
+
<hudson.tasks.Mailer plugin="mailer@1.20">
|
101
|
+
<recipients>dev@wewanttoknow.com</recipients>
|
102
|
+
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
|
103
|
+
<sendToIndividuals>false</sendToIndividuals>
|
104
|
+
</hudson.tasks.Mailer>
|
105
|
+
<% if !artifacts.nil? && artifacts.length != 0 %> <hudson.tasks.ArtifactArchiver>
|
106
|
+
<artifacts><%= artifacts.join(', ') %></artifacts>
|
107
|
+
<allowEmptyArchive>true</allowEmptyArchive>
|
108
|
+
<onlyIfSuccessful>false</onlyIfSuccessful>
|
109
|
+
<fingerprint>false</fingerprint>
|
110
|
+
<defaultExcludes>true</defaultExcludes>
|
111
|
+
<caseSensitive>true</caseSensitive>
|
112
|
+
</hudson.tasks.ArtifactArchiver>
|
113
|
+
<% end %>
|
114
|
+
</publishers>
|
115
|
+
<buildWrappers>
|
116
|
+
<hudson.plugins.build__timeout.BuildTimeoutWrapper plugin="build-timeout@1.18">
|
117
|
+
<strategy class="hudson.plugins.build_timeout.impl.AbsoluteTimeOutStrategy">
|
118
|
+
<timeoutMinutes><%= timeout_param %></timeoutMinutes>
|
119
|
+
</strategy>
|
120
|
+
<operationList/>
|
121
|
+
</hudson.plugins.build__timeout.BuildTimeoutWrapper>
|
122
|
+
<hudson.plugins.ansicolor.AnsiColorBuildWrapper plugin="ansicolor@0.4.1">
|
123
|
+
<colorMapName>xterm</colorMapName>
|
124
|
+
</hudson.plugins.ansicolor.AnsiColorBuildWrapper>
|
125
|
+
<ruby-proxy-object>
|
126
|
+
<ruby-object ruby-class="Jenkins::Tasks::BuildWrapperProxy" pluginid="rvm">
|
127
|
+
<object ruby-class="RvmWrapper" pluginid="rvm">
|
128
|
+
<impl pluginid="rvm" ruby-class="String">.</impl>
|
129
|
+
</object>
|
130
|
+
<pluginid pluginid="rvm" ruby-class="String">rvm</pluginid>
|
131
|
+
</ruby-object>
|
132
|
+
</ruby-proxy-object>
|
133
|
+
<org.jenkinsci.plugins.credentialsbinding.impl.SecretBuildWrapper plugin="credentials-binding@1.11">
|
134
|
+
<bindings>
|
135
|
+
<org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
136
|
+
<credentialsId>FASTLANE_PUBLISH_MODULE_GITHUB_REPO_TOKEN</credentialsId>
|
137
|
+
<variable>FASTLANE_PUBLISH_MODULE_GITHUB_REPO_TOKEN</variable>
|
138
|
+
</org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
139
|
+
<% extra_credentials.each do |key, value| %><org.jenkinsci.plugins.credentialsbinding.impl.StringBinding>
|
140
|
+
<credentialsId><%= key %></credentialsId>
|
141
|
+
<variable><%= value %></variable>
|
142
|
+
</org.jenkinsci.plugins.credentialsbinding.impl.StringBinding><% end %>
|
143
|
+
</bindings>
|
144
|
+
</org.jenkinsci.plugins.credentialsbinding.impl.SecretBuildWrapper>
|
145
|
+
</buildWrappers>
|
146
|
+
</project>
|