[docs] Including Jenkins configuration file

This file is highly localized for my personal set-up.  If you want to
run Jenkins yourself, you *will* have to edit it, or use it as an example
in your own set-up.
This commit is contained in:
Elf M. Sternberg 2015-07-07 20:27:11 -07:00
parent 7bd66b6080
commit 1a777acb4c
1 changed files with 57 additions and 0 deletions

57
extras/jenkins_config.xml Normal file
View File

@ -0,0 +1,57 @@
<?xml version='1.0' encoding='UTF-8'?>
<project>
<actions/>
<description>Building in the chapters of Lisp In Small Pieces.</description>
<logRotator class="hudson.tasks.LogRotator">
<daysToKeep>-1</daysToKeep>
<numToKeep>10</numToKeep>
<artifactDaysToKeep>-1</artifactDaysToKeep>
<artifactNumToKeep>-1</artifactNumToKeep>
</logRotator>
<keepDependencies>false</keepDependencies>
<properties/>
<scm class="hudson.plugins.git.GitSCM" plugin="git@2.3.4">
<configVersion>2</configVersion>
<userRemoteConfigs>
<hudson.plugins.git.UserRemoteConfig>
<url>file:///home/elf/Projects/LispInSmallPieces</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>
<org.jenkinsci.plugins.fstrigger.triggers.FolderContentTrigger plugin="fstrigger@0.39">
<spec></spec>
<path>file:///home/elf/Projects/LispInSmallPieces</path>
<excludeCheckLastModificationDate>false</excludeCheckLastModificationDate>
<excludeCheckContent>false</excludeCheckContent>
<excludeCheckFewerOrMoreFiles>false</excludeCheckFewerOrMoreFiles>
</org.jenkinsci.plugins.fstrigger.triggers.FolderContentTrigger>
</triggers>
<concurrentBuild>false</concurrentBuild>
<builders>
<hudson.tasks.Shell>
<command>make node_modules test</command>
</hudson.tasks.Shell>
</builders>
<publishers>
<hudson.tasks.junit.JUnitResultArchiver plugin="junit@1.2-beta-4">
<testResults>test-reports.xml</testResults>
<keepLongStdio>false</keepLongStdio>
<testDataPublishers/>
<healthScaleFactor>1.0</healthScaleFactor>
</hudson.tasks.junit.JUnitResultArchiver>
</publishers>
<buildWrappers/>
</project>