summaryrefslogtreecommitdiff
path: root/liw.conf
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-08-25 16:09:41 +0100
committerLars Wirzenius <liw@liw.fi>2012-08-25 16:09:41 +0100
commitde5b6d94f914a9f373f70f8aa52a1ca1de08c9b9 (patch)
tree684d658df4ab1ebe875ba006a11d7c1fb993e4e3 /liw.conf
parent8a00fdeabd8deded4b852892a8cd205597b2e137 (diff)
downloadjenkinstool-de5b6d94f914a9f373f70f8aa52a1ca1de08c9b9.tar.gz
Add build dependency support
If foo needs bar to build, but yoyo does not, and bar changes, then there's no point in running the pipeline for yoyo.
Diffstat (limited to 'liw.conf')
-rw-r--r--liw.conf13
1 files changed, 12 insertions, 1 deletions
diff --git a/liw.conf b/liw.conf
index 148da6d..7aeb388 100644
--- a/liw.conf
+++ b/liw.conf
@@ -28,6 +28,9 @@
{
"name": "ttystatus",
"bzr": "http://code.liw.fi/ttystatus/bzr/trunk/",
+ "build-depends": [
+ "CoverageTestRunner"
+ ],
"build-commands": [
"make all check"
]
@@ -35,6 +38,9 @@
{
"name": "cliapp",
"bzr": "http://code.liw.fi/cliapp/bzr/trunk/",
+ "build-depends": [
+ "CoverageTestRunner"
+ ],
"build-commands": [
"make all check"
]
@@ -42,7 +48,12 @@
{
"name": "cmdtest",
"git": "git://gitorious.org/cmdtest/cmdtest.git",
- "build-commands": [
+ "build-depends": [
+ "CoverageTestRunner",
+ "cliapp",
+ "ttystatus"
+ ],
+ "build-commands": [
"python setup.py check"
]
}