Skip to content

Commit

Permalink
Disable osx 10.13 config in ci
Browse files Browse the repository at this point in the history
There is something missing from the template. We have to fix
that to re-enable.

Change-Id: I796a2bf31dd455053eab29b352b984cfbda3ee4a
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
  • Loading branch information
faltsi authored and FriedemannKleint committed Jun 4, 2018
1 parent b8b516d commit 1e081ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coin_build_instructions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down
2 changes: 1 addition & 1 deletion coin_test_instructions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down

0 comments on commit 1e081ed

Please sign in to comment.