
- so they don't get lost when servers are down. - also place runtime_code_path.jpg in imgs/ directory Change-Id: I614c51929cb7a624fd8c6720bc8fe17a62a8ab40
79 lines
2.8 KiB
XML
79 lines
2.8 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<project>
|
|
<actions/>
|
|
<description></description>
|
|
<logRotator class="hudson.tasks.LogRotator">
|
|
<daysToKeep>15</daysToKeep>
|
|
<numToKeep>10</numToKeep>
|
|
<artifactDaysToKeep>-1</artifactDaysToKeep>
|
|
<artifactNumToKeep>-1</artifactNumToKeep>
|
|
</logRotator>
|
|
<keepDependencies>false</keepDependencies>
|
|
<properties>
|
|
<org.jenkinsci.plugins.ZMQEventPublisher.HudsonNotificationProperty plugin="zmq-event-publisher@0.0.3">
|
|
<enabled>false</enabled>
|
|
</org.jenkinsci.plugins.ZMQEventPublisher.HudsonNotificationProperty>
|
|
<hudson.model.ParametersDefinitionProperty>
|
|
<parameterDefinitions>
|
|
<hudson.model.StringParameterDefinition>
|
|
<name>ZUUL_BRANCH</name>
|
|
<description></description>
|
|
<defaultValue>master</defaultValue>
|
|
</hudson.model.StringParameterDefinition>
|
|
</parameterDefinitions>
|
|
</hudson.model.ParametersDefinitionProperty>
|
|
</properties>
|
|
<scm class="hudson.scm.NullSCM"/>
|
|
<assignedNode>precise</assignedNode>
|
|
<canRoam>false</canRoam>
|
|
<disabled>false</disabled>
|
|
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
|
|
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
|
<triggers/>
|
|
<concurrentBuild>true</concurrentBuild>
|
|
<builders>
|
|
<hudson.tasks.Shell>
|
|
<command>#!/bin/bash -x
|
|
if [[ -e compass-core ]]; then
|
|
rm -rf compass-core
|
|
fi
|
|
git clone https://git.openstack.org/stackforge/compass-core -b $ZUUL_BRANCH
|
|
cd compass-core
|
|
if [[ -z $ZUUL_PROJECT ]]; then
|
|
echo "ZUUL_PROJECT is not set"
|
|
elif [[ -z $ZUUL_BRANCH ]]; then
|
|
echo "ZUUL_BRANCH is not set"
|
|
elif [[ -z $ZUUL_REF ]]; then
|
|
echo "ZUUL_REF is not set"
|
|
elif [[ "$ZUUL_PROJECT" != "stackforge/compass-core" ]]; then
|
|
echo "$ZUUL_PROJECT is not stackforge/compass-core"
|
|
else
|
|
git_repo=$ZUUL_URL/stackforge/compass-core
|
|
git_ref=$ZUUL_REF
|
|
git_branch=$ZUUL_BRANCH
|
|
git reset --hard remotes/origin/$git_branch
|
|
git fetch $git_repo $git_ref
|
|
git merge FETCH_HEAD
|
|
git clean -x -f
|
|
fi
|
|
tox -epep8</command>
|
|
</hudson.tasks.Shell>
|
|
</builders>
|
|
<publishers>
|
|
<be.certipost.hudson.plugin.SCPRepositoryPublisher plugin="scp@1.9-SNAPSHOT">
|
|
<siteName>local_log_server</siteName>
|
|
<entries>
|
|
<be.certipost.hudson.plugin.Entry>
|
|
<filePath>$LOG_PATH</filePath>
|
|
<sourceFile></sourceFile>
|
|
<keepHierarchy>true</keepHierarchy>
|
|
<copyConsoleLog>true</copyConsoleLog>
|
|
<copyAfterFailure>true</copyAfterFailure>
|
|
</be.certipost.hudson.plugin.Entry>
|
|
</entries>
|
|
</be.certipost.hudson.plugin.SCPRepositoryPublisher>
|
|
</publishers>
|
|
<buildWrappers>
|
|
<hudson.plugins.timestamper.TimestamperBuildWrapper plugin="timestamper@1.3.2"/>
|
|
</buildWrappers>
|
|
</project> |