Created
January 1, 2016 08:44
-
-
Save bhush9/d2c45567b5caf1e98ebf to your computer and use it in GitHub Desktop.
config for arch_plasma-mobile_iso jenkins job
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
<?xml version='1.0' encoding='UTF-8'?> | |
<project> | |
<actions/> | |
<description>Jenkins job to generate Arch Linux based ISO for plasma mobile</description> | |
<keepDependencies>false</keepDependencies> | |
<properties> | |
<hudson.plugins.buildblocker.BuildBlockerProperty plugin="[email protected]"> | |
<useBuildBlocker>false</useBuildBlocker> | |
</hudson.plugins.buildblocker.BuildBlockerProperty> | |
<org.jenkinsci.plugins.gitlablogo.GitlabLogoProperty plugin="[email protected]"> | |
<repositoryName></repositoryName> | |
</org.jenkinsci.plugins.gitlablogo.GitlabLogoProperty> | |
<org.bstick12.jenkinsci.plugins.leastload.LeastLoadDisabledProperty plugin="[email protected]"> | |
<leastLoadDisabled>false</leastLoadDisabled> | |
</org.bstick12.jenkinsci.plugins.leastload.LeastLoadDisabledProperty> | |
<hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="[email protected]"> | |
<maxConcurrentPerNode>0</maxConcurrentPerNode> | |
<maxConcurrentTotal>0</maxConcurrentTotal> | |
<categories/> | |
<throttleEnabled>false</throttleEnabled> | |
<throttleOption>project</throttleOption> | |
<configVersion>1</configVersion> | |
</hudson.plugins.throttleconcurrents.ThrottleJobProperty> | |
</properties> | |
<scm class="hudson.plugins.git.GitSCM" plugin="[email protected]"> | |
<configVersion>2</configVersion> | |
<userRemoteConfigs> | |
<hudson.plugins.git.UserRemoteConfig> | |
<url>https://github.com/blue-systems/plasma-arch.git</url> | |
</hudson.plugins.git.UserRemoteConfig> | |
</userRemoteConfigs> | |
<branches> | |
<hudson.plugins.git.BranchSpec> | |
<name>*/master</name> | |
</hudson.plugins.git.BranchSpec> | |
</branches> | |
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations> | |
<submoduleCfg class="list"/> | |
<extensions/> | |
</scm> | |
<assignedNode>master</assignedNode> | |
<canRoam>false</canRoam> | |
<disabled>false</disabled> | |
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding> | |
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding> | |
<triggers/> | |
<concurrentBuild>false</concurrentBuild> | |
<builders> | |
<hudson.tasks.Shell> | |
<command>env | |
docker info | |
docker ps | |
mkdir -p $WORKSPACE/pkg | |
docker run --rm=true --privileged=true -v `pwd`:/tmp/working -v $WORKSPACE/pkg:/var/cache/pacman base/archlinux /tmp/working/ci_setup.sh | |
scp out/*.iso [email protected]:/var/www/ISO/plasma-mobile/</command> | |
</hudson.tasks.Shell> | |
</builders> | |
<publishers> | |
<hudson.plugins.descriptionsetter.DescriptionSetterPublisher plugin="[email protected]"> | |
<regexp>BUILD - \[([^\]]*)\] \((http[^\)]*)\) \[([^\]]*)\] \((http[^\)]*)\) \[([^\]]*)\] \((http[^\)]*)\)</regexp> | |
<regexpForFailed></regexpForFailed> | |
<description><a href="\2">[\1]</a> <a href="\4">[\3]</a> <a href="\6">[\5]</a></description> | |
<setForMatrix>false</setForMatrix> | |
</hudson.plugins.descriptionsetter.DescriptionSetterPublisher> | |
<ru.snowleos.jenkins.anchorchain.LinksPublisher plugin="[email protected]"> | |
<name>chain</name> | |
</ru.snowleos.jenkins.anchorchain.LinksPublisher> | |
</publishers> | |
<buildWrappers> | |
<hudson.plugins.timestamper.TimestamperBuildWrapper plugin="[email protected]"/> | |
<hudson.plugins.ansicolor.AnsiColorBuildWrapper plugin="[email protected]"> | |
<colorMapName>xterm</colorMapName> | |
</hudson.plugins.ansicolor.AnsiColorBuildWrapper> | |
</buildWrappers> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment