-
Notifications
You must be signed in to change notification settings - Fork 333
/
azure-pipelines.yml
89 lines (84 loc) · 2.71 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
# Python package
# Create and test a Python package on multiple Python versions.
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
trigger:
branches:
include:
- master
- refs/tags/*
tags:
include:
- v*
stages:
- stage: build
displayName: BuildLibrary
jobs:
- job: 'Test'
pool:
vmImage: 'Ubuntu-18.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
displayName: 'Use Python version'
- script: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements-dev.txt
displayName: 'Install dependencies'
- script: |
pytest tests/ --cov pyswarms --junit-xml=junit/test-results.xml --cov-report=xml --cov-report=html
displayName: 'Run tests with coverage'
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-*.xml'
testRunTitle: 'Python $(python.version)'
condition: succeededOrFailed()
displayName: 'Publish test results'
- task: PublishCodeCoverageResults@1
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml'
reportDirectory: '$(System.DefaultWorkingDirectory)/**/htmlcov'
displayName: 'Publish coverage results in Azure'
- script: |
pip install wheel
python setup.py sdist bdist_wheel
displayName: 'Create artifacts'
- task: PublishPipelineArtifact@0
condition: and(eq(variables['python.version'], '3.7'), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
inputs:
artifactName: 'pyswarms'
targetPath: 'dist'
displayName: 'Publish pipeline artifact'
- stage: publish
condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/')
displayName: PublishArtifacts
jobs:
- job: Publish
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.x'
architecture: 'x64'
displayName: 'Use Python version'
- task: DownloadPipelineArtifact@2
inputs:
artifact: 'pyswarms'
path: 'dist'
displayName: 'Download artifacts'
- task: TwineAuthenticate@1
inputs:
pythonUploadServiceConnection: 'pypi-upload'
displayName: 'Authenticate twine to PyPI'
- script: |
python -m pip install twine
twine upload -r pypi --config-file $(PYPIRC_PATH) dist/*
displayName: 'Upload files to PyPI'