From 6778485203ad9219fc1ff4e14738c51fc9d16bea Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Tue, 15 Sep 2015 16:05:16 +0000 Subject: Force building when the files haven't changed I've not seen it save us from a build we didn't want to do, and given we're feeding it with a branch that we're controlling, and only feeding changes we want it to build, the whitelist is not relevant for the moment. --- builder_logic.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'builder_logic.py') diff --git a/builder_logic.py b/builder_logic.py index 660bb72..e4cfc8e 100644 --- a/builder_logic.py +++ b/builder_logic.py @@ -87,7 +87,8 @@ if __name__ == '__main__': _exit(do_build_deploy(SYSTEM)) _files_changed = files_changed() systems_list = [] - for f in _files_changed: - if f in whitelist: - _exit(do_build_deploy(SYSTEM)) + #for f in _files_changed: + # if f in whitelist: + # _exit(do_build_deploy(SYSTEM)) + _exit(do_build_deploy(SYSTEM)) log('nothing whitelisted changed. No build started.') -- cgit v1.2.1