aboutsummaryrefslogtreecommitdiff
path: root/node
diff options
context:
space:
mode:
authorVishal Bhoj <vishal.bhoj@linaro.org>2015-05-08 17:31:12 +0530
committerVishal Bhoj <vishal.bhoj@linaro.org>2016-04-18 14:10:28 +0530
commit043215cb0a7fb1b02bf5c4de094078f49f01861b (patch)
treeeea9738bf6ae2cb0e4fc999160690ae0d5f6ed1b /node
parentff6f79243008a8ae8c922b345fd7ff0fd3a37c3a (diff)
disable slave type check
We no more do restricted builds on a separate jenkins instance. This check was very android-build.linaro.org jenkins instance specific in the way it tried to check the restricted build which breaks things on jobs on ci.linaro.org hence removing this part of the code. Change-Id: Id40b9e014f319a20d98977cc39ce7b8a261df198 Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org>
Diffstat (limited to 'node')
-rwxr-xr-xnode/prepare_build_config.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/node/prepare_build_config.py b/node/prepare_build_config.py
index 9fdee1c..ca88cda 100755
--- a/node/prepare_build_config.py
+++ b/node/prepare_build_config.py
@@ -113,11 +113,6 @@ def main(config_in, is_base64):
else:
BUILD_CONFIG_FILE=BUILD_CONFIG_FILE_VPS
config = convert_config_to_shell(config_in, BUILD_CONFIG_FILE)
- try:
- validate_config(config, get_slave_type())
- except BuildConfigMismatchException, e:
- print str(e)
- sys.exit(1)
if __name__ == "__main__":
optparser = optparse.OptionParser(usage="%prog")