diff options
author | Robinson Tryon <qubit@runcibility.com> | 2014-12-14 18:40:28 -0500 |
---|---|---|
committer | Robinson Tryon <qubit@runcibility.com> | 2014-12-14 18:49:34 -0500 |
commit | 84ca3c307a5a06b2cbb82e89733bfa8c0661d4bc (patch) | |
tree | 5c8ab52ccd195d27b0298adb991234021abb2d45 | |
parent | c35022748073666a0ba53e91dc0ed7b88ac3497a (diff) |
bibisect: move config variable BINREPO out into bibisect.cfg
Change-Id: Id31f6042cc0cbfa2788b6edf26e29568ab1f771b
-rwxr-xr-x | bibisect/Makefile | 1 | ||||
-rw-r--r-- | bibisect/bibisect.cfg | 11 |
2 files changed, 8 insertions, 4 deletions
diff --git a/bibisect/Makefile b/bibisect/Makefile index 2f56d8a9..f6694a96 100755 --- a/bibisect/Makefile +++ b/bibisect/Makefile @@ -29,7 +29,6 @@ include bibisect.cfg -BINREPO:=/root/binrepo BUILDDIR:=$(WORKDIR)/build ARTIFACTDIR:=$(WORKDIR)/artifact ORDERMODE?=master diff --git a/bibisect/bibisect.cfg b/bibisect/bibisect.cfg index abafb8f8..fb178071 100644 --- a/bibisect/bibisect.cfg +++ b/bibisect/bibisect.cfg @@ -1,10 +1,15 @@ -#FROM:=8450a99c -FROM:=cb4e009c4539c535108021934e545194b35cad9d -TO:=e579d45 +# Starting with last build in the previous repo (44alpha2only) +FROM:=b800d0b6ad74ce4a9adb23b865dd174d1eefa47b +# Ending with the libreoffice-4.4.0.0.beta1 tag +TO:=9af3d21234aa89dac653c0bd76648188cdeb683e + INTERVAL:=64 ORDERMODE:=master WORKDIR:=/run/bibisect SOURCEREPO:=/root/core/.git +# Don't create the tip 'binrepo' directory -- it'll get created each +# time bibisect generation occurs. +BINREPO:=/root/binrepo BUILDSCRIPT:=$(dir $(realpath $(firstword $(MAKEFILE_LIST))))/build.sh |