diff options
author | Memphiz <memphis@machzwo.de> | 2015-03-25 20:45:24 +0100 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2015-03-25 21:21:29 +0100 |
commit | 6e6f2c0b49b69a75e59ffac3581bce4a393c892a (patch) | |
tree | 65bdb11042cf4cf91f2b4857de7823e08fac2791 /tools/buildsteps/androidx86 | |
parent | 4649f97e9e5e675d4eec54a639b886115581cb5c (diff) |
[jenkins] - prevent cleanout of native tools when pathChanged returns 1 in make-native-depends (due to Configuration set to RELEASE)
Diffstat (limited to 'tools/buildsteps/androidx86')
-rw-r--r-- | tools/buildsteps/androidx86/make-native-depends | 2 | ||||
-rw-r--r-- | tools/buildsteps/androidx86/prepare-xbmc | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/tools/buildsteps/androidx86/make-native-depends b/tools/buildsteps/androidx86/make-native-depends index 549ad2becb..33cc579322 100644 --- a/tools/buildsteps/androidx86/make-native-depends +++ b/tools/buildsteps/androidx86/make-native-depends @@ -2,7 +2,7 @@ WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )} XBMC_PLATFORM_DIR=android . $WORKSPACE/tools/buildsteps/defaultenv -if [ "$(pathChanged $WORKSPACE/tools/depends)" == "1" ] +if [ "$(pathChanged $WORKSPACE/tools/depends)" == "1" ] && [ "$BINARY_ADDONS_CLEAN_NATIVETOOLS" != "0" ] then git clean -xffd $WORKSPACE/tools/depends/native cd $WORKSPACE/tools/depends/native;make -j $BUILDTHREADS && tagSuccessFulBuild $WORKSPACE/tools/depends diff --git a/tools/buildsteps/androidx86/prepare-xbmc b/tools/buildsteps/androidx86/prepare-xbmc index b6402ee3c9..bccdcb0453 100644 --- a/tools/buildsteps/androidx86/prepare-xbmc +++ b/tools/buildsteps/androidx86/prepare-xbmc @@ -11,4 +11,7 @@ fi git submodule update --init $WORKSPACE/addons/skin.re-touched #build binary addons before building xbmc... +#make sure that binary_addons don't clean the native tools +#here (e.x. on release builds where pathChanged always returns 1 +BINARY_ADDONS_CLEAN_NATIVETOOLS="0" . $WORKSPACE/tools/buildsteps/$XBMC_PLATFORM_DIR/make-binary-addons |