From 3970e68daee8ef8e27c1bf626ee9eb0f191a3569 Mon Sep 17 00:00:00 2001 From: Marc Hoersken Date: Sun, 25 Jul 2021 20:05:43 +0200 Subject: CI/azure: reduce compile time with increased parallism Azure Pipelines CI VMs have 2 CPUs, let's use them. Closes #7489 --- .azure-pipelines.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.azure-pipelines.yml') diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 7587445bc..8d37eec06 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -85,6 +85,8 @@ stages: - script: make V=1 && cd tests && make V=1 displayName: 'compile' + env: + MAKEFLAGS: "-j 2" - script: make test-nonflaky displayName: 'test' @@ -191,6 +193,8 @@ stages: - script: $(container_cmd) -l -c "cd $(echo '%cd%') && make V=1 && cd tests && make V=1" displayName: 'compile' + env: + MAKEFLAGS: "-j 2" - script: $(container_cmd) -l -c "cd $(echo '%cd%') && make V=1 install && PATH=/usr/bin:/bin find . -type f -path '*/.libs/*.exe' -print -execdir mv -t .. {} \;" displayName: 'install' -- cgit v1.2.1