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

advanced-test.yml « .azure-pipelines - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10ff79289a132b37aa45e66747dce471baa8b26d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Advanced pipeline for running our full test suite on demand and for release branches.
trigger:
  - '*.x'
  # When changing these triggers, please ensure the documentation under
  # "Running tests in CI" is still correct.
  - test-*
pr: none

stages:
  - template: templates/stages/test-and-package-stage.yml
  # Notify failures only for release branches.
  - ${{ if not(startsWith(variables['Build.SourceBranchName'], 'test-')) }}:
    - template: templates/stages/notify-failure-stage.yml