aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--coin_build_instructions.py8
-rw-r--r--coin_test_instructions.py8
2 files changed, 16 insertions, 0 deletions
diff --git a/coin_build_instructions.py b/coin_build_instructions.py
index 175513570..ad4331845 100644
--- a/coin_build_instructions.py
+++ b/coin_build_instructions.py
@@ -89,6 +89,14 @@ def call_setup(python_ver):
run_instruction(cmd, "Failed to run setup.py")
def run_build_instructions():
+ # Disable unsupported configs for now
+ if CI_HOST_OS_VER in ["WinRT_10"]:
+ print("Disabled " + CI_HOST_OS_VER + " from Coin configuration")
+ exit()
+ if CI_HOST_ARCH == "X86_64" and CI_TARGET_ARCH == "X86":
+ print("Disabled 32 bit build on 64 bit from Coin configuration, until toolchains provisioned")
+ exit()
+
# Uses default python, hopefully we have python2 installed on all hosts
call_setup("")
diff --git a/coin_test_instructions.py b/coin_test_instructions.py
index 29b664542..c9c184dd0 100644
--- a/coin_test_instructions.py
+++ b/coin_test_instructions.py
@@ -72,6 +72,14 @@ def call_testrunner(python_ver, buildnro):
run_instruction(cmd, "Failed to run testrunner.py")
def run_test_instructions():
+ # Disable unsupported configs for now
+ if CI_HOST_OS_VER in ["WinRT_10"]:
+ print("Disabled " + CI_HOST_OS_VER + " from Coin configuration")
+ exit()
+ if CI_HOST_ARCH == "X86_64" and CI_TARGET_ARCH == "X86":
+ print("Disabled 32 bit build on 64 bit from Coin configuration, until toolchains provisioned")
+ exit()
+
os.chdir(CI_ENV_AGENT_DIR)
call_testrunner("", "0")
# We know that second build was with python3