forked from KomodoPlatform/komodo-defi-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathazure-pipelines.yml
46 lines (41 loc) · 1.25 KB
/
azure-pipelines.yml
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
43
44
45
46
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
variables:
- group: passphrases
trigger:
branches:
include:
- refs/heads/*
paths:
exclude:
- README.md
- mm2src/README.md
- etomic_build/*
- iguana/Readme.md
jobs:
- template: azure-pipelines-job.yml # Template reference
parameters:
name: 'MM2_Linux'
os: 'Linux'
bob_passphrase: 'BOB_PASSPHRASE_LINUX'
bob_userpass: 'BOB_USERPASS_LINUX'
alice_passphrase: 'ALICE_PASSPHRASE_LINUX'
alice_userpass: 'ALICE_USERPASS_LINUX'
- template: azure-pipelines-job.yml # Template reference
parameters:
name: 'MM2_MacOS'
os: 'Darwin'
bob_passphrase: 'BOB_PASSPHRASE_MAC'
bob_userpass: 'BOB_USERPASS_MAC'
alice_passphrase: 'ALICE_PASSPHRASE_MAC'
alice_userpass: 'ALICE_USERPASS_MAC'
- template: azure-pipelines-job.yml # Template reference
parameters:
name: 'MM2_Windows'
os: 'Windows_NT'
bob_passphrase: 'BOB_PASSPHRASE_WIN'
bob_userpass: 'BOB_USERPASS_WIN'
alice_passphrase: 'ALICE_PASSPHRASE_WIN'
alice_userpass: 'ALICE_USERPASS_WIN'