Merge "Test defaults honors project variables"

This commit is contained in:
Jenkins 2014-07-27 00:13:03 +00:00 committed by Gerrit Code Review
commit 8a6f7e1f5b
2 changed files with 32 additions and 0 deletions

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<project>
<actions/>
<description>&lt;!-- Managed by Jenkins Job Builder --&gt;</description>
<keepDependencies>false</keepDependencies>
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
<concurrentBuild>false</concurrentBuild>
<canRoam>true</canRoam>
<properties/>
<scm class="hudson.scm.NullSCM"/>
<builders>
<hudson.tasks.Shell>
<command>make all</command>
</hudson.tasks.Shell>
</builders>
<publishers/>
<buildWrappers/>
</project>

@ -0,0 +1,13 @@
- defaults:
name: 'global'
builders:
- shell: "make {make-target}"
- job-template:
name: 'build-project'
- project:
name: 'project'
make-target: 'all'
jobs:
- 'build-project'