Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Ferrand <ferrand.ad@gmail.com>2021-03-25 21:30:10 +0300
committerAdrien Ferrand <ferrand.ad@gmail.com>2021-03-25 21:30:10 +0300
commit7db1a1bb415dd91c3c65edfaf743ea0b0d79bb96 (patch)
tree419aab67c75190f26258c9d2f531634255702e71
parente2600ebeed5f6a5f8b815293f9f33689d774747a (diff)
Also parallelize the publish_snap jobs over each architectureparallel-snaps-multiarch
-rw-r--r--.azure-pipelines/templates/stages/deploy-stage.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.azure-pipelines/templates/stages/deploy-stage.yml b/.azure-pipelines/templates/stages/deploy-stage.yml
index ac2044f99..f42dd2a28 100644
--- a/.azure-pipelines/templates/stages/deploy-stage.yml
+++ b/.azure-pipelines/templates/stages/deploy-stage.yml
@@ -37,6 +37,14 @@ stages:
vmImage: ubuntu-18.04
variables:
- group: certbot-common
+ strategy:
+ matrix:
+ amd64:
+ SNAP_ARCH: amd64
+ arm32v6:
+ SNAP_ARCH: armhf
+ arm64v8:
+ SNAP_ARCH: arm64
steps:
- bash: |
set -e
@@ -46,7 +54,7 @@ stages:
displayName: Install dependencies
- task: DownloadPipelineArtifact@2
inputs:
- artifact: snaps
+ artifact: snaps_$(SNAP_ARCH)
path: $(Build.SourcesDirectory)/snap
displayName: Retrieve Certbot snaps
- task: DownloadSecureFile@1