Revert "Disable vs2017 + 32bit Rust combo as it is broken."

This reverts commit 75688240cf

Should've been fixed by c95bffb295
pull/9133/head
Nirbheek Chauhan 3 years ago committed by Nirbheek Chauhan
parent 8c5aa031b5
commit 339c768862
  1. 5
      run_project_tests.py

@ -1007,10 +1007,7 @@ def has_broken_rustc() -> bool:
return pc.returncode != 0
def has_broken_compiler_combination() -> bool:
# Rust and vs2017 do not work together. But only with 32 bits.
if os.environ.get('VisualStudioVersion') == '15.0' and os.environ.get('Platform') == 'x86':
return True
# Clang-cl also fails with Rust.
# Clang-cl fails with Rust on the CI
if shutil.which('cl') is None and shutil.which('clang-cl'):
return True
return False

Loading…
Cancel
Save