Last active
January 3, 2016 01:39
-
-
Save dlovell/8391011 to your computer and use it in GitHub Desktop.
example jenkins confix.xml for crosscat
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></description> | |
<keepDependencies>false</keepDependencies> | |
<properties/> | |
<scm class="hudson.plugins.git.GitSCM" plugin="[email protected]"> | |
<configVersion>2</configVersion> | |
<userRemoteConfigs> | |
<hudson.plugins.git.UserRemoteConfig> | |
<url>https://github.com/mit-probabilistic-computing-project/crosscat</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> | |
<canRoam>true</canRoam> | |
<disabled>false</disabled> | |
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding> | |
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding> | |
<triggers> | |
<hudson.triggers.TimerTrigger> | |
<spec>H 0 * * *</spec> | |
</hudson.triggers.TimerTrigger> | |
<com.cloudbees.jenkins.GitHubPushTrigger plugin="[email protected]"> | |
<spec></spec> | |
</com.cloudbees.jenkins.GitHubPushTrigger> | |
</triggers> | |
<concurrentBuild>false</concurrentBuild> | |
<builders> | |
<hudson.tasks.Shell> | |
<command>bash jenkins/jenkins_script.sh</command> | |
</hudson.tasks.Shell> | |
</builders> | |
<publishers> | |
<hudson.tasks.ArtifactArchiver> | |
<artifacts>**/*.*</artifacts> | |
<latestOnly>false</latestOnly> | |
<allowEmptyArchive>false</allowEmptyArchive> | |
</hudson.tasks.ArtifactArchiver> | |
<hudson.tasks.junit.JUnitResultArchiver> | |
<testResults>**/nosetests.xml</testResults> | |
<keepLongStdio>false</keepLongStdio> | |
<testDataPublishers/> | |
</hudson.tasks.junit.JUnitResultArchiver> | |
<hudson.tasks.Mailer plugin="[email protected]"> | |
<recipients>[email protected]</recipients> | |
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild> | |
<sendToIndividuals>false</sendToIndividuals> | |
</hudson.tasks.Mailer> | |
</publishers> | |
<buildWrappers/> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment