From 385b56481bff0b0a917d35b7fc7a6642cc2bbdbe Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Sat, 19 Sep 2020 13:45:27 -0700 Subject: [PATCH] Enable 64-bit (out-of-process) integration tests --- azure-pipelines-integration.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/azure-pipelines-integration.yml b/azure-pipelines-integration.yml index 705eac2f5c3..00a7dc61691 100644 --- a/azure-pipelines-integration.yml +++ b/azure-pipelines-integration.yml @@ -25,16 +25,15 @@ jobs: debug_32: _configuration: Debug _oop64bit: false - # 64-bit disabled for https://github.com/dotnet/roslyn/issues/40476 - # debug_64: - # _configuration: Debug - # _oop64bit: true + debug_64: + _configuration: Debug + _oop64bit: true release_32: _configuration: Release _oop64bit: false - # release_64: - # _configuration: Release - # _oop64bit: true + release_64: + _configuration: Release + _oop64bit: true timeoutInMinutes: 135 steps: -- GitLab