-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines-master.yml
More file actions
42 lines (33 loc) · 1 KB
/
azure-pipelines-master.yml
File metadata and controls
42 lines (33 loc) · 1 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
---
trigger:
- master
variables:
- group: Foci Secrets
stages:
- stage: install_and_test
displayName: Test
jobs:
- template: pipeline_templates/designer-install-and-test.yml
- template: pipeline_templates/server-build-and-test.yml
- stage: mirror_to_github
displayName: Mirror to GitHub
dependsOn:
- install_and_test
condition: succeeded('install_and_test')
jobs:
- template: pipeline_templates/mirror-to-github.yml
- stage: build_and_push_containers
displayName: Build and Push Containers
dependsOn:
- install_and_test
condition: succeeded('install_and_test')
jobs:
- template: pipeline_templates/designer-build-container.yml
- template: pipeline_templates/server-build-container.yml
- stage: push_to_docker_hub
displayName: Push To DockerHub
dependsOn:
- build_and_push_containers
condition: succeeded('build_and_push_containers')
jobs:
- template: pipeline_templates/push-to-docker-hub.yml