aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--coin_build_instructions.py4
-rw-r--r--coin_test_instructions.py4
2 files changed, 0 insertions, 8 deletions
diff --git a/coin_build_instructions.py b/coin_build_instructions.py
index 1104e996c..75f9feb66 100644
--- a/coin_build_instructions.py
+++ b/coin_build_instructions.py
@@ -143,10 +143,6 @@ def run_build_instructions():
if not acceptCITestConfiguration(CI_HOST_OS, CI_HOST_OS_VER, CI_TARGET_ARCH, CI_COMPILER):
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
# Skip building using Python 2 on Windows, because of different MSVC C runtimes (VS2008 vs VS2015+)
if CI_HOST_OS != "Windows":
diff --git a/coin_test_instructions.py b/coin_test_instructions.py
index a61a1c9fa..4121bb558 100644
--- a/coin_test_instructions.py
+++ b/coin_test_instructions.py
@@ -87,10 +87,6 @@ def run_test_instructions():
if not acceptCITestConfiguration(CI_HOST_OS, CI_HOST_OS_VER, CI_TARGET_ARCH, CI_COMPILER):
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)
testRun = 0
# We didn't build for Python 2 in win