From caec12c5456df4dccd213b9df26998a0084f281e Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Thu, 1 Aug 2019 12:53:03 +0100 Subject: [PATCH] Reduce the parallelism in Windows Release build tests. Hopefully this will stop the CI machines from running out of memory... --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 728baab..f7ce06c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -112,7 +112,7 @@ jobs: 64-bit Release: BuildType: Release CMakeArgs: '-G"Visual Studio 15 2017 Win64"' - JFlag: '-j 4' + JFlag: '-j 2' 64-bit Release Windows8Compat: BuildType: Release @@ -127,7 +127,7 @@ jobs: 32-bit Release: BuildType: Release CMakeArgs: '-G"Visual Studio 15 2017"' - JFlag: '-j 4' + JFlag: '-j 2' steps: - task: CMake@1