Skip to content

Commit

Permalink
Disable Ubuntu 18.04 NoGui configuration from CI
Browse files Browse the repository at this point in the history
Change-Id: I57783a5da7b403e45463068900c1248fbd3651f9
Reviewed-by: Christian Tismer <tismer@stackless.com>
  • Loading branch information
faltsi committed May 31, 2019
1 parent 0fc54b0 commit ec8edca
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion build_scripts/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,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", "WebAssembly"]:
if hostOSVer in ["WinRT_10", "WebAssembly", "Ubuntu_18_04"]:
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
Expand Down
1 change: 0 additions & 1 deletion coin_test_instructions.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
if _ci_features is not None:
for f in _ci_features.split(', '):
CI_FEATURES.append(f)

CI_RELEASE_CONF = has_option("packaging")

def call_testrunner(python_ver, buildnro):
Expand Down

0 comments on commit ec8edca

Please sign in to comment.