forked from pvlib/pvlib-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
45 lines (31 loc) · 766 Bytes
/
azure-pipelines.yml
File metadata and controls
45 lines (31 loc) · 766 Bytes
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
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
trigger:
- master
jobs:
- template: ci/azure/posix.yml
parameters:
name: Test_bare_Linux
vmImage: ubuntu-16.04
- template: ci/azure/posix.yml
parameters:
name: Test_bare_macOS
vmImage: macOS-10.14
- template: ci/azure/conda_linux.yml
parameters:
name: Test_conda_linux
vmImage: ubuntu-16.04
- template: ci/azure/conda_windows.yml
parameters:
name: Test_conda_windows
vmImage: vs2017-win2016
- job: 'Publish'
dependsOn: 'Test_conda_linux'
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.x'
architecture: 'x64'
- script: python setup.py sdist
displayName: 'Build sdist'