From: Marc Hoersken Date: Sun, 25 Jul 2021 18:05:43 +0000 (+0200) Subject: CI/azure: reduce compile time with increased parallism X-Git-Tag: curl-7_79_0~165 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3970e68daee8ef8e27c1bf626ee9eb0f191a3569;p=thirdparty%2Fcurl.git CI/azure: reduce compile time with increased parallism Azure Pipelines CI VMs have 2 CPUs, let's use them. Closes #7489 --- diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 7587445bc9..8d37eec065 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'