diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 52427037..eb5acbff 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -50,7 +50,7 @@ phases: failOnStderr: true displayName: 'LD_PRELOAD Compile' -- phase: Windows +- phase: Windows 64bit queue: name: 'Hosted VS2017' parallel: 2 @@ -76,6 +76,32 @@ phases: workingDirectory: build displayName: 'Run Ctest' +- phase: Windows 32bit + queue: + name: 'Hosted VS2017' + parallel: 2 + matrix: + Debug: + BuildType: Debug + Release: + BuildType: Release + + steps: + - task: CMake@1 + displayName: 'CMake .. -G"Visual Studio 15 2017"' + inputs: + cmakeArgs: '.. -G"Visual Studio 15 2017"' + + - task: MSBuild@1 + displayName: 'Build solution build/snmalloc.sln' + inputs: + solution: build/snmalloc.sln + msbuildArguments: '/m /p:Configuration=$(BuildType)' + + - script: 'ctest -j 4 --interactive-debug-mode 0 --output-on-failure' + workingDirectory: build + displayName: 'Run Ctest' + - phase: Format queue: name: 'Hosted Ubuntu 1604'