You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
159 lines
7.2 KiB
159 lines
7.2 KiB
<?xml version='1.1' encoding='UTF-8'?>
|
|
<project>
|
|
<actions/>
|
|
<description></description>
|
|
<keepDependencies>false</keepDependencies>
|
|
<properties>
|
|
<jenkins.model.BuildDiscarderProperty>
|
|
<strategy class="hudson.tasks.LogRotator">
|
|
<daysToKeep>-1</daysToKeep>
|
|
<numToKeep>50</numToKeep>
|
|
<artifactDaysToKeep>-1</artifactDaysToKeep>
|
|
<artifactNumToKeep>-1</artifactNumToKeep>
|
|
</strategy>
|
|
</jenkins.model.BuildDiscarderProperty>
|
|
<com.chikli.hudson.plugin.naginator.NaginatorOptOutProperty plugin="naginator@1.18">
|
|
<optOut>false</optOut>
|
|
</com.chikli.hudson.plugin.naginator.NaginatorOptOutProperty>
|
|
</properties>
|
|
<scm class="hudson.plugins.git.GitSCM" plugin="git@3.9.3">
|
|
<configVersion>2</configVersion>
|
|
<userRemoteConfigs>
|
|
<hudson.plugins.git.UserRemoteConfig>
|
|
<url>{{ PACKAGING_URL }}</url>
|
|
</hudson.plugins.git.UserRemoteConfig>
|
|
</userRemoteConfigs>
|
|
<branches>
|
|
<hudson.plugins.git.BranchSpec>
|
|
<name>*/{{ PACKAGING_BRANCH }}</name>
|
|
</hudson.plugins.git.BranchSpec>
|
|
</branches>
|
|
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
|
<submoduleCfg class="list"/>
|
|
<extensions>
|
|
<hudson.plugins.git.extensions.impl.RelativeTargetDirectory>
|
|
<relativeTargetDir>{{ NAME }}</relativeTargetDir>
|
|
</hudson.plugins.git.extensions.impl.RelativeTargetDirectory>
|
|
</extensions>
|
|
</scm>
|
|
<canRoam>true</canRoam>
|
|
<disabled>false</disabled>
|
|
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
|
|
<blockBuildWhenUpstreamBuilding>true</blockBuildWhenUpstreamBuilding>
|
|
<triggers>
|
|
<jenkins.triggers.ReverseBuildTrigger>
|
|
<spec></spec>
|
|
<upstreamProjects>merger_{{ NAME }}, mgmt_build_{{ RELEASE }}_unstable</upstreamProjects>
|
|
<threshold>
|
|
<name>SUCCESS</name>
|
|
<ordinal>0</ordinal>
|
|
<color>BLUE</color>
|
|
<completeBuild>true</completeBuild>
|
|
</threshold>
|
|
</jenkins.triggers.ReverseBuildTrigger>
|
|
</triggers>
|
|
<concurrentBuild>false</concurrentBuild>
|
|
<builders>
|
|
<hudson.tasks.Shell>
|
|
<command>
|
|
git clone {{ UPSTREAM_URL }} upstream;
|
|
export VERSION="$(head -1 {{ NAME }}/debian/changelog | sed -n '/(/,/)/{:a; $!N; /)/!{$!ba}; s/.*(\([^)]*\)).*/\1/p}' | cut -d '-' -f1)+git$(date +'%Y%m%d%H%M')~{{ RELEASE }}";
|
|
export DEBFULLNAME="Lugito"
|
|
export DEBEMAIL="info@lubuntu.me"
|
|
tar cvf {{ NAME }}_$VERSION.orig.tar upstream;
|
|
gzip {{ NAME }}_$VERSION.orig.tar;
|
|
(cd {{ NAME }}; dch --distribution {{ RELEASE }} --package "{{ NAME }}" --newversion "$VERSION-0ubuntu1~ppa1" "CI upload."; debuild -S -d -sa -k06DA7DDBBF3117FFE3FB849E4F81E626A09EB338; dput {{ UPLOAD_TARGET }} ../{{ NAME }}_$VERSION-0ubuntu1~ppa1_source.changes)
|
|
sleep 5m;
|
|
git clone https://phab.lubuntu.me/source/ci-tooling.git tooling;
|
|
./tooling/ci/lp_check.py -p {{ NAME }} -v $VERSION-0ubuntu1~ppa1 -t lubuntu-ci -r unstable-ci-proposed;
|
|
</command>
|
|
</hudson.tasks.Shell>
|
|
<hudson.tasks.Shell>
|
|
<command>
|
|
export VERSION="$(head -1 {{ NAME }}/debian/changelog | sed -n '/(/,/)/{:a; $!N; /)/!{$!ba}; s/.*(\([^)]*\)).*/\1/p}' | cut -d '-' -f1)";
|
|
pull-ppa-debs --ppa=ppa:lubuntu-ci/unstable-ci-proposed {{ NAME }} $VERSION-0ubuntu1~ppa1;
|
|
lintian --fail-on=error,warning --suppress-tags orig-tarball-missing-upstream-signature,package-has-long-file-name -EvIL +pedantic *.dsc *.deb;
|
|
</command>
|
|
<unstableReturn>2</unstableReturn>
|
|
</hudson.tasks.Shell>
|
|
</builders>
|
|
<publishers>
|
|
<com.chikli.hudson.plugin.naginator.NaginatorPublisher plugin="naginator@1.18">
|
|
<regexpForRerun></regexpForRerun>
|
|
<rerunIfUnstable>false</rerunIfUnstable>
|
|
<rerunMatrixPart>false</rerunMatrixPart>
|
|
<checkRegexp>false</checkRegexp>
|
|
<regexpForMatrixStrategy>TestParent</regexpForMatrixStrategy>
|
|
<maxSchedule>2</maxSchedule>
|
|
</com.chikli.hudson.plugin.naginator.NaginatorPublisher>
|
|
<hudson.plugins.ws__cleanup.WsCleanup plugin="ws-cleanup@0.37">
|
|
<patterns class="empty-list"/>
|
|
<deleteDirs>false</deleteDirs>
|
|
<skipWhenFailed>false</skipWhenFailed>
|
|
<cleanWhenSuccess>true</cleanWhenSuccess>
|
|
<cleanWhenUnstable>true</cleanWhenUnstable>
|
|
<cleanWhenFailure>true</cleanWhenFailure>
|
|
<cleanWhenNotBuilt>true</cleanWhenNotBuilt>
|
|
<cleanWhenAborted>true</cleanWhenAborted>
|
|
<notFailBuild>false</notFailBuild>
|
|
<cleanupMatrixParent>false</cleanupMatrixParent>
|
|
<externalDelete></externalDelete>
|
|
<disableDeferredWipeout>false</disableDeferredWipeout>
|
|
</hudson.plugins.ws__cleanup.WsCleanup>
|
|
<org.jenkins__ci.plugins.flexible__publish.FlexiblePublisher plugin="flexible-publish@0.15.2">
|
|
<publishers>
|
|
<org.jenkins__ci.plugins.flexible__publish.ConditionalPublisher>
|
|
<condition class="org.jenkins_ci.plugins.run_condition.core.StatusCondition" plugin="run-condition@1.3">
|
|
<worstResult>
|
|
<name>ABORTED</name>
|
|
<ordinal>4</ordinal>
|
|
<color>ABORTED</color>
|
|
<completeBuild>false</completeBuild>
|
|
</worstResult>
|
|
<bestResult>
|
|
<name>SUCCESS</name>
|
|
<ordinal>0</ordinal>
|
|
<color>BLUE</color>
|
|
<completeBuild>true</completeBuild>
|
|
</bestResult>
|
|
</condition>
|
|
<publisherList>
|
|
<jenkins.plugins.http__request.HttpRequest plugin="http_request@1.8.26">
|
|
<url>http://lugito.lubuntu.me:5000/jenkinsnag</url>
|
|
<ignoreSslErrors>false</ignoreSslErrors>
|
|
<httpMode>POST</httpMode>
|
|
<httpProxy></httpProxy>
|
|
<passBuildParameters>false</passBuildParameters>
|
|
<validResponseCodes>100:399</validResponseCodes>
|
|
<validResponseContent></validResponseContent>
|
|
<acceptType>NOT_SET</acceptType>
|
|
<contentType>NOT_SET</contentType>
|
|
<outputFile></outputFile>
|
|
<timeout>0</timeout>
|
|
<consoleLogResponseBody>false</consoleLogResponseBody>
|
|
<quiet>false</quiet>
|
|
<authentication></authentication>
|
|
<requestBody>{"PROJECT": "{{ RELEASE }}_stable_{{ NAME }}"}</requestBody>
|
|
<uploadFile></uploadFile>
|
|
<multipartName></multipartName>
|
|
<wrapAsMultipart>false</wrapAsMultipart>
|
|
<useSystemProperties>false</useSystemProperties>
|
|
<customHeaders class="empty-list"/>
|
|
</jenkins.plugins.http__request.HttpRequest>
|
|
</publisherList>
|
|
<runner class="org.jenkins_ci.plugins.run_condition.BuildStepRunner$Fail" plugin="run-condition@1.3"/>
|
|
<executionStrategy class="org.jenkins_ci.plugins.flexible_publish.strategy.FailAtEndExecutionStrategy"/>
|
|
</org.jenkins__ci.plugins.flexible__publish.ConditionalPublisher>
|
|
</publishers>
|
|
</org.jenkins__ci.plugins.flexible__publish.FlexiblePublisher>
|
|
</publishers>
|
|
<buildWrappers>
|
|
<hudson.plugins.ws__cleanup.PreBuildCleanup plugin="ws-cleanup@0.38">
|
|
<deleteDirs>false</deleteDirs>
|
|
<cleanupParameter></cleanupParameter>
|
|
<externalDelete></externalDelete>
|
|
<disableDeferredWipeout>false</disableDeferredWipeout>
|
|
</hudson.plugins.ws__cleanup.PreBuildCleanup>
|
|
</buildWrappers>
|
|
</project>
|