aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2019-08-15 08:52:43 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2019-08-15 09:59:27 +0200
commite6a5bcd9eb2b63d1a8a020ac3fdf9d66851e0960 (patch)
tree08d9817e7438e200d4489e39c22aed271b05f656
parentefc7ad5498ff03de8a444a8c1d880f949aaf4d43 (diff)
Exclude SLES_12,15 from COIN builds
Change-Id: I6ba6cb1799837ebcf093404ca3415c893584f21e Reviewed-by: Christian Tismer <tismer@stackless.com> Reviewed-by: Simo Fält <simo.falt@qt.io>
-rw-r--r--build_scripts/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build_scripts/utils.py b/build_scripts/utils.py
index b34d37123..5169f403d 100644
--- a/build_scripts/utils.py
+++ b/build_scripts/utils.py
@@ -1148,7 +1148,8 @@ 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"] \
+ or hostOSVer.startswith("SLES_"):
print("Disabled " + hostOSVer + " from Coin configuration")
return False
# With 5.11 CI will create two sets of release binaries, one with msvc 2015 and one with msvc 2017