aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2019-01-18 10:26:54 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2019-01-22 09:24:22 +0000
commitf85e18f755eb1387609efed90861b9d7933f6b56 (patch)
tree82815bbae7b63b97f22a38a2d43277a2a37b11fd /build_scripts
parent6b8d0eca48e18394cb1075d3e7ace326a398742e (diff)
Disable WebAssembly config from CI
Qt for Python is not supporting that configuration. Change-Id: I4821ca84c1706cc60d3d43d5f20efbbda10e9c07 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'build_scripts')
-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 9500b3409..ffe404860 100644
--- a/build_scripts/utils.py
+++ b/build_scripts/utils.py
@@ -1133,7 +1133,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"]:
+ if hostOSVer in ["WinRT_10", "WebAssembly"]:
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