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:
authorWill Greenberg <willg@eff.org>2022-09-23 00:09:20 +0300
committerGitHub <noreply@github.com>2022-09-23 00:09:20 +0300
commit7c3b9043a10318b72d2269fbaff47e2b4c49b286 (patch)
tree7a0d42651ab3690ce56d5727ec53f9dd134fd402
parentdb31a8c1f56f821de29587b563ff1fcbc6e472dd (diff)
parente0b639397b8a96953862bfb837dce74d62065e1c (diff)
Merge pull request #9414 from certbot/simplify-ci
Actually test everything in test- branches (besides deployment)
-rw-r--r--.azure-pipelines/templates/jobs/packaging-jobs.yml20
1 files changed, 8 insertions, 12 deletions
diff --git a/.azure-pipelines/templates/jobs/packaging-jobs.yml b/.azure-pipelines/templates/jobs/packaging-jobs.yml
index c5dcf16dd..cd2a08886 100644
--- a/.azure-pipelines/templates/jobs/packaging-jobs.yml
+++ b/.azure-pipelines/templates/jobs/packaging-jobs.yml
@@ -6,12 +6,10 @@ jobs:
matrix:
amd64:
DOCKER_ARCH: amd64
- # Do not run the heavy non-amd64 builds for test branches
- ${{ if not(startsWith(variables['Build.SourceBranchName'], 'test-')) }}:
- arm32v6:
- DOCKER_ARCH: arm32v6
- arm64v8:
- DOCKER_ARCH: arm64v8
+ arm32v6:
+ DOCKER_ARCH: arm32v6
+ arm64v8:
+ DOCKER_ARCH: arm64v8
# The default timeout of 60 minutes is a little low for compiling
# cryptography on ARM architectures.
timeoutInMinutes: 180
@@ -121,12 +119,10 @@ jobs:
matrix:
amd64:
SNAP_ARCH: amd64
- # Do not run the heavy non-amd64 builds for test branches
- ${{ if not(startsWith(variables['Build.SourceBranchName'], 'test-')) }}:
- armhf:
- SNAP_ARCH: armhf
- arm64:
- SNAP_ARCH: arm64
+ armhf:
+ SNAP_ARCH: armhf
+ arm64:
+ SNAP_ARCH: arm64
timeoutInMinutes: 0
steps:
- script: |