diff --git a/coin_build_instructions.py b/coin_build_instructions.py index ad43318457..6f51cce8fc 100644 --- a/coin_build_instructions.py +++ b/coin_build_instructions.py @@ -90,7 +90,7 @@ def call_setup(python_ver): def run_build_instructions(): # Disable unsupported configs for now - if CI_HOST_OS_VER in ["WinRT_10"]: + if CI_HOST_OS_VER in ["WinRT_10", "MacOS_10_13"]: print("Disabled " + CI_HOST_OS_VER + " from Coin configuration") exit() if CI_HOST_ARCH == "X86_64" and CI_TARGET_ARCH == "X86": diff --git a/coin_test_instructions.py b/coin_test_instructions.py index c9c184dd0e..6b5007b98b 100644 --- a/coin_test_instructions.py +++ b/coin_test_instructions.py @@ -73,7 +73,7 @@ def call_testrunner(python_ver, buildnro): def run_test_instructions(): # Disable unsupported configs for now - if CI_HOST_OS_VER in ["WinRT_10"]: + if CI_HOST_OS_VER in ["WinRT_10", "MacOS_10_13"]: print("Disabled " + CI_HOST_OS_VER + " from Coin configuration") exit() if CI_HOST_ARCH == "X86_64" and CI_TARGET_ARCH == "X86":