From 3084f87757e84b8414a0bbe17abea24862025335 Mon Sep 17 00:00:00 2001 From: Marc Hoersken Date: Tue, 14 Jun 2022 21:33:35 +0200 Subject: CI/azure: reduce flakiness by retrying install/prepare steps Closes #9010 --- .azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.azure-pipelines.yml') diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 4f0effdf9..171a650dd 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -81,6 +81,7 @@ stages: steps: - script: sudo apt-get update && sudo apt-get install -y stunnel4 python3-impacket libzstd-dev libbrotli-dev $(install) displayName: 'apt install' + retryCountOnTaskFailure: 3 - script: autoreconf -fi && ./configure --enable-warnings --enable-werror $(configure) displayName: 'configure $(name)' @@ -159,6 +160,7 @@ stages: steps: - script: sudo apt-get update && sudo apt-get install -y clang-tools-10 clang-9 libssl-dev libssh2-1-dev libpsl-dev libbrotli-dev libzstd-dev displayName: 'apt install' + retryCountOnTaskFailure: 3 - script: autoreconf -fi displayName: 'autoreconf' @@ -275,6 +277,7 @@ stages: - script: $(container_cmd) -l -c "cd $(echo '%cd%') && $(prepare)" displayName: 'prepare' condition: variables.prepare + retryCountOnTaskFailure: 3 - script: $(container_cmd) -l -c "cd $(echo '%cd%') && autoreconf -fi && ./configure $(configure)" displayName: 'configure $(name)' -- cgit v1.2.1