jenkins-job-builder/tests/general/fixtures/matrix-axis004.xml
Teemu Suvanto 9d57c4c47f Fix wrong casing in JDKAxis <name> tag
If value is written in uppercase letters, Jenkins converts it to
lowercase the next time the job configuration is saved.

  <hudson.matrix.JDKAxis>
    <name>JDK</name>

is changed to:

  <hudson.matrix.JDKAxis>
    <name>jdk</name>

As a result build URLs will change:

http://host/job/matrix_build/JDK=Java-7/1/

to:

http://host/job/matrix_build/jdk=Java-7/2/

Change-Id: Ia3018327c6dbffb2bb828dcc494559e57a1b6ad8
2015-02-17 19:17:43 +09:00

23 lines
729 B
XML

<?xml version="1.0" encoding="utf-8"?>
<matrix-project>
<executionStrategy class="hudson.matrix.DefaultMatrixExecutionStrategyImpl">
<runSequentially>false</runSequentially>
</executionStrategy>
<combinationFilter/>
<axes>
<hudson.matrix.JDKAxis>
<name>jdk</name>
<values>
<string>openjdk-6-jdk</string>
<string>openjdk-7-jdk</string>
</values>
</hudson.matrix.JDKAxis>
</axes>
<actions/>
<keepDependencies>false</keepDependencies>
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
<concurrentBuild>false</concurrentBuild>
<canRoam>true</canRoam>
</matrix-project>