Update jenkins config

This commit is contained in:
Carsten Schmiemann 2022-04-20 21:56:00 +02:00
parent ede1e57238
commit 215fbc2261
1 changed files with 40 additions and 4 deletions

View File

@ -1,7 +1,7 @@
<?xml version='1.1' encoding='UTF-8'?>
<project>
<actions/>
<description>Build and upload OVMS3 fork</description>
<description>Build my OVMS3 fork and upload it to my own OTA server.</description>
<keepDependencies>false</keepDependencies>
<properties>
<hudson.model.ParametersDefinitionProperty>
@ -18,6 +18,31 @@ Edge = Entwicklung</description>
</a>
</choices>
</hudson.model.ChoiceParameterDefinition>
<hudson.model.TextParameterDefinition>
<name>Changelog_L1</name>
<description>Änderungen in der Firmware Version, wird beim OTA Update angezeigt.</description>
<trim>false</trim>
</hudson.model.TextParameterDefinition>
<hudson.model.TextParameterDefinition>
<name>Changelog_L2</name>
<trim>false</trim>
</hudson.model.TextParameterDefinition>
<hudson.model.TextParameterDefinition>
<name>Changelog_L3</name>
<trim>false</trim>
</hudson.model.TextParameterDefinition>
<hudson.model.TextParameterDefinition>
<name>Changelog_L4</name>
<trim>false</trim>
</hudson.model.TextParameterDefinition>
<hudson.model.TextParameterDefinition>
<name>Changelog_L5</name>
<trim>false</trim>
</hudson.model.TextParameterDefinition>
<hudson.model.TextParameterDefinition>
<name>Changelog_L6</name>
<trim>false</trim>
</hudson.model.TextParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
</properties>
@ -42,7 +67,12 @@ Edge = Entwicklung</description>
<disabled>false</disabled>
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
<triggers/>
<triggers>
<hudson.triggers.SCMTrigger>
<spec></spec>
<ignorePostCommitHooks>false</ignorePostCommitHooks>
</hudson.triggers.SCMTrigger>
</triggers>
<concurrentBuild>false</concurrentBuild>
<builders>
<hudson.tasks.Shell>
@ -66,9 +96,15 @@ git tag -d 3.3.002-cs${BUILD_NUMBER}</command>
</hudson.tasks.Shell>
<hudson.tasks.Shell>
<command>echo 3.3.002-cs${BUILD_NUMBER} &gt; OVMS.V3/build/ovms3.ver
echo ${GIT_COMMIT}-${GIT_BRANCH} &gt;&gt; OVMS.V3/build/ovms3.ver
echo ${GIT_COMMIT}-${GIT_BRANCH}-${Build_Tag_Version} &gt;&gt; OVMS.V3/build/ovms3.ver
echo ${GIT_URL} &gt;&gt; OVMS.V3/build/ovms3.ver
echo ${Build_Tag_Version} &gt;&gt; OVMS.V3/build/ovms3.ver</command>
echo Changes: &gt;&gt; OVMS.V3/build/ovms3.ver
echo ${Changelog_L1} &gt;&gt; OVMS.V3/build/ovms3.ver
echo ${Changelog_L2} &gt;&gt; OVMS.V3/build/ovms3.ver
echo ${Changelog_L3} &gt;&gt; OVMS.V3/build/ovms3.ver
echo ${Changelog_L4} &gt;&gt; OVMS.V3/build/ovms3.ver
echo ${Changelog_L5} &gt;&gt; OVMS.V3/build/ovms3.ver
echo ${Changelog_L6} &gt;&gt; OVMS.V3/build/ovms3.ver</command>
<configuredLocalRules/>
</hudson.tasks.Shell>
</builders>