-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathazure-pipelines.yml
48 lines (44 loc) · 993 Bytes
/
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
47
48
# 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
trigger:
- master
- development
jobs:
- job: RDKit_Ubuntu_18_04
pool:
vmImage: ubuntu-18.04
strategy:
matrix:
Python37:
python.version: '37'
Python36:
python.version: '36'
steps:
- template: .azure-pipelines/rdkit_ubuntu1804_build.yml
- job: RDKit_macOS_10_14
pool:
vmImage: macos-10.14
variables:
target_platform: 10.9
strategy:
matrix:
Python37:
python.version: '37'
Python36:
python.version: '36'
steps:
- template: .azure-pipelines/rdkit_mac_build.yml
- job: Windows_VS2017_x64
timeoutInMinutes: 90
pool:
vmImage: vs2017-win2016
strategy:
matrix:
Python37:
python.version: '37'
Python36:
python.version: '36'
steps:
- template: .azure-pipelines/rdkit_vs17_build.yml