Skip to content

Commit

Permalink
making sure the jobs are up to date and the pipeline executes it self…
Browse files Browse the repository at this point in the history
… in sequence
  • Loading branch information
morkeleb committed Jan 9, 2011
1 parent 14ca0af commit 382d32c
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 3 deletions.
8 changes: 8 additions & 0 deletions hudson/home/jobs/1. Packaging/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ touch package/readme</command>
<artifacts>package/*</artifacts>
<latestOnly>false</latestOnly>
</hudson.tasks.ArtifactArchiver>
<hudson.tasks.BuildTrigger>
<childProjects>2. Acceptance testing</childProjects>
<threshold>
<name>SUCCESS</name>
<ordinal>0</ordinal>
<color>BLUE</color>
</threshold>
</hudson.tasks.BuildTrigger>
</publishers>
<buildWrappers/>
</project>
11 changes: 10 additions & 1 deletion hudson/home/jobs/2. Acceptance testing/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
<triggers class="vector"/>
<concurrentBuild>false</concurrentBuild>
<builders/>
<publishers/>
<publishers>
<hudson.tasks.BuildTrigger>
<childProjects>3. Capacity testing</childProjects>
<threshold>
<name>SUCCESS</name>
<ordinal>0</ordinal>
<color>BLUE</color>
</threshold>
</hudson.tasks.BuildTrigger>
</publishers>
<buildWrappers/>
</project>
25 changes: 25 additions & 0 deletions hudson/home/jobs/3. Capacity testing/config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version='1.0' encoding='UTF-8'?>
<project>
<actions/>
<description></description>
<keepDependencies>false</keepDependencies>
<properties/>
<scm class="hudson.scm.NullSCM"/>
<canRoam>true</canRoam>
<disabled>false</disabled>
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
<triggers class="vector"/>
<concurrentBuild>false</concurrentBuild>
<builders/>
<publishers>
<hudson.tasks.BuildTrigger>
<childProjects>4. Manual testing</childProjects>
<threshold>
<name>SUCCESS</name>
<ordinal>0</ordinal>
<color>BLUE</color>
</threshold>
</hudson.tasks.BuildTrigger>
</publishers>
<buildWrappers/>
</project>
2 changes: 1 addition & 1 deletion hudson/home/jobs/4. Manual testing/config.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<project>
<actions/>
<description></description>
<description>This build will set up an environment for manual testing and email the testers notifing about its availablility.</description>
<keepDependencies>false</keepDependencies>
<properties/>
<scm class="hudson.scm.NullSCM"/>
Expand Down
2 changes: 1 addition & 1 deletion hudson/home/jobs/5. Release/config.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<project>
<actions/>
<description></description>
<description>The release build takes the last package from the manual testing job and marks it as a release.</description>
<keepDependencies>false</keepDependencies>
<properties/>
<scm class="hudson.scm.NullSCM"/>
Expand Down

0 comments on commit 382d32c

Please sign in to comment.