forked from beautifier/js-beautify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
96 lines (87 loc) · 1.96 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# https://aka.ms/yaml
jobs:
- job: 'Windows'
pool:
vmImage: 'windows-latest'
strategy:
matrix:
Python36_Node10:
python.version: '3.6'
python.architecture: 'x64'
node_version: 10.x
Python37_Node12:
python.version: '3.7'
python.architecture: 'x64'
node_version: 12.x
Python38_Node13:
python.version: '3.8'
python.architecture: 'x64'
node_version: 13.x
maxParallel: 6
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: '$(python.architecture)'
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
# change this to make ci after addressing git CRLF issue
- task: Bash@3
inputs:
targetType: 'inline'
script: 'make all'
- job: 'Linux'
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python27_Node8:
python.version: '2.7'
node_version: 8.x
Python36_Node10:
python.version: '3.6'
node_version: 10.x
Python37_Node12:
python.version: '3.7'
node_version: 12.x
Python38_Node13:
python.version: '3.8'
node_version: 13.x
maxParallel: 6
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
- task: Bash@3
inputs:
targetType: 'inline'
script: 'make ci'
- job: 'MacOS'
pool:
vmImage: 'macOS-latest'
strategy:
matrix:
Python27_Node8:
python.version: '2.7'
node_version: 8.x
Python37_Node12:
python.version: '3.7'
node_version: 12.x
maxParallel: 6
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
- task: Bash@3
inputs:
targetType: 'inline'
script: 'make ci'