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

azure-pipelines.yaml - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a713e9df433102a89a40bd1175016f8ab2f236d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: $(BuildID)

trigger: 
  branches:
    include: [ main, d16-*, d17-* ]
pr:
  autoCancel: 'true'
  branches:
    include: [ main, d16-*, d17-* ]

resources:
  repositories:
  - repository: self
  - repository: templates   # for shared yaml templates
    type: github
    name: xamarin/yaml-templates
    ref: refs/heads/main
    endpoint: xamarin

# Variables
variables:
- template: .build/automation/variables.yml

stages:
  - template: .build/automation/stages/validate.yml
  - template: .build/automation/stages/security_compliance.yml
# The following Stages are dependent on the OneLocBuild task which is not available in the Xamarin Public AzDevops instance
  - template: .build/automation/stages/localization-handoff.yml                     # Process outgoing strings [Localization Handoff]
  - template: .build/automation/stages/localization-handback.yml                    # Process incoming translations and Create PR to main [Localization Handback]
  - template: .build/automation/stages/merge-translations-update.yml                # Validating incoming translations strings and merge PR [Localization Handback]