From 375acbf46e78d38139c8481d65fd87574aa4fdfd Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Mon, 21 Sep 2015 17:35:54 +0000 Subject: Disable deployment from aarch64 builds --- builder_logic.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'builder_logic.py') diff --git a/builder_logic.py b/builder_logic.py index fe9b9f9..fe6c59c 100644 --- a/builder_logic.py +++ b/builder_logic.py @@ -68,11 +68,18 @@ def build(system): return exit_val def trigger_deploy(system): + import platform import requests global url global buildslave_scripts_sha global definitions_sha global testing_sha + + # Hacky skipping of attempting to deploy if this was an aarch64 build. + # We don't yet have deployment set up, + # and we don't want to cause an x86 deployment to happen. + if platform.machine() == 'aarch64': return 0 + url = '%sbuild_complete' % ORCHE_URL if not system: return 0 payload = { -- cgit v1.2.1