summaryrefslogtreecommitdiff
path: root/builder_logic.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2015-09-15 16:05:16 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2015-09-15 16:05:16 +0000
commit6778485203ad9219fc1ff4e14738c51fc9d16bea (patch)
tree65a17d7a0d334a34a34928eaaafd0bef0db22300 /builder_logic.py
parent1106150ae2434df295b5b6a567a9056c264ffcbc (diff)
downloadbuildslave-scripts-6778485203ad9219fc1ff4e14738c51fc9d16bea.tar.gz
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.
Diffstat (limited to 'builder_logic.py')
-rw-r--r--builder_logic.py7
1 files changed, 4 insertions, 3 deletions
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.')