forked from SURGroup/UQpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
169 lines (138 loc) · 5.98 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# 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
variables:
pythonVersion: 3.7
srcDirectory: src
trigger:
- master
- Development
- feature/*
- bugfix/*
- hotfix/*
pr:
branches:
include:
- master
- Development
pool:
vmImage: "macOS-latest"
steps:
- task: UsePythonVersion@0
displayName: "Use Python $(pythonVersion)"
inputs:
versionSpec: "$(pythonVersion)"
- task: gitversion/setup@0
# condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
displayName: Setup GitVersion
inputs:
versionSpec: '5.x'
- task: gitversion/execute@0
# condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
displayName: Calculate GitVersion
inputs:
useConfigFile: true
configFilePath: 'GitVersion.yml'
- powershell: |
echo "Current version: $(GitVersion.SemVer)"
displayName: Shows currently compiling version
# condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
- task: SonarCloudPrepare@1
condition: or(eq(variables['Build.SourceBranch'], 'refs/heads/master'),eq(variables['Build.SourceBranch'], 'refs/heads/Development'),eq(variables['Build.Reason'], 'PullRequest'))
inputs:
SonarCloud: 'SonarCloud.UQpy'
organization: 'jhusurg'
scannerMode: 'CLI'
configMode: 'manual'
cliProjectKey: 'SURGroup_UQpy'
cliProjectName: 'UQpy'
cliSources: '.'
extraProperties: |
sonar.exclusions=**/example/**, **/tests/**, **/docs/**
sonar.python.coverage.reportPaths=./coverage.xml
- script: |
pip install -r requirements.txt
displayName: Install project dependencies
- script: |
pip install pylint
pylint --ignored-modules=numpy,scipy,matplotlib,sklearn --disable=E0202 --disable=R,C,W src/UQpy
displayName: "Running Pylint"
- script: |
pip install pytest pytest-cov
PYTHONPATH=src pytest tests/*.py --cov=src tests/ --junitxml=junit/test-results.xml --cov-report=xml --cov-report=html
workingDirectory: $(Build.SourcesDirectory)
displayName: 'Test with pytest'
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testResultsFiles: '**/test-*.xml'
testRunTitle: 'Publish test results for Python $(python.version)'
- task: PublishCodeCoverageResults@1
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml'
reportDirectory: '$(System.DefaultWorkingDirectory)/**/htmlcov'
additionalCodeCoverageFiles: '$(System.DefaultWorkingDirectory)/ **'
- task: SonarCloudAnalyze@1
condition: or(eq(variables['Build.SourceBranch'], 'refs/heads/master'),eq(variables['Build.SourceBranch'], 'refs/heads/Development'),eq(variables['Build.Reason'], 'PullRequest'))
- task: SonarCloudPublish@1
condition: or(eq(variables['Build.SourceBranch'], 'refs/heads/master'),eq(variables['Build.SourceBranch'], 'refs/heads/Development'),eq(variables['Build.Reason'], 'PullRequest'))
inputs:
pollingTimeoutSec: '300'
- script: |
python setup.py $(GitVersion.SemVer) sdist bdist_wheel
displayName: Artifact creation
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
- task: CopyFiles@2
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
inputs:
SourceFolder: 'dist'
Contents: '**'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: PublishBuildArtifacts@1
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'dist'
publishLocation: 'Container'
- script: |
twine upload --repository-url https://upload.pypi.org/legacy/ dist/* --username "$(TESTPYPIU)" --password "$(TESTPYPIP)"
displayName: Upload to PyPi
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
- task: GitHubRelease@1
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
inputs:
gitHubConnection: 'GitHub_OAuth'
repositoryName: '$(Build.Repository.Name)'
action: 'create'
target: '$(Build.SourceVersion)'
tagSource: 'userSpecifiedTag'
tag: 'v$(GitVersion.SemVer)'
changeLogCompareToRelease: 'lastFullRelease'
changeLogType: 'commitBased'
- bash: echo "##vso[task.prependpath]$CONDA/bin"
displayName: Add conda to PATH
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
- bash: sudo chown -R $USER $CONDA
displayName: Take ownership of conda installation
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
- bash: conda create --yes --quiet --name myEnvironment
displayName: Create Anaconda environment
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
- bash: |
source activate myEnvironment
conda install --yes --quiet --name myEnvironment python=$(pythonVersion) conda-build anaconda-client
displayName: Install Anaconda packages
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
- bash: |
source activate myEnvironment
conda build . recipe --variants "{'version': ['$(GitVersion.SemVer)']}"
displayName: Build Noarch conda packages
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')
- bash: |
source activate myEnvironment
anaconda login --username $(ANACONDAUSER) --password $(ANACONDAPW)
anaconda upload /usr/local/miniconda/envs/myEnvironment/conda-bld/noarch/*.tar.bz2
displayName: Upload conda packages
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')