aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2019-09-19 10:40:27 +0300
committerSimo Fält <simo.falt@qt.io>2019-10-21 06:22:47 +0000
commit75f9f6333075bd7f4cd63def83989a8a6a3a31d9 (patch)
tree367895dabde0c80b88d4ef4be35169f1e35b6024
parent9571893c7042723a7938de0523a39b46d437a1aa (diff)
Disable Android target from CI
Change-Id: I4945620d3328cfd26a713306730beb64445136f4 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> (cherry picked from commit 833e2e1dde7c2f4de281c177e42e737b6865cdde)
-rw-r--r--build_scripts/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_scripts/utils.py b/build_scripts/utils.py
index 5169f403d..fa4981988 100644
--- a/build_scripts/utils.py
+++ b/build_scripts/utils.py
@@ -1148,7 +1148,7 @@ def run_instruction(instruction, error, initial_env=None):
def acceptCITestConfiguration(hostOS, hostOSVer, targetArch, compiler):
# Disable unsupported CI configs for now
# NOTE: String must match with QT CI's storagestruct thrift
- if hostOSVer in ["WinRT_10", "WebAssembly", "Ubuntu_18_04"] \
+ if hostOSVer in ["WinRT_10", "WebAssembly", "Ubuntu_18_04", "Android_ANY"] \
or hostOSVer.startswith("SLES_"):
print("Disabled " + hostOSVer + " from Coin configuration")
return False