From c2a3abcbed5d89c5471047c3ad0adbc3b4d0fe26 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 23 Dec 2016 17:16:05 -0600 Subject: [PATCH] Made cibuild use the master Makefile --- scripts/cibuild | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/scripts/cibuild b/scripts/cibuild index 086c1f55f..c0417efb2 100755 --- a/scripts/cibuild +++ b/scripts/cibuild @@ -2,12 +2,6 @@ set -e -OS=$(uname | tr [:upper:] [:lower:]) -TARGET=$OS-$(uname -m) - -./scripts/setup_build $TARGET -./scripts/setup_build $TARGET debug -make -j -C build/${TARGET}-release all -make -j -C build/${TARGET}-release test -make -j -C build/${TARGET}-debug all -make -j -C build/${TARGET}-debug test +make -j release +make -j debug +make -j