forked from sunpy/sunpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
112 lines (97 loc) · 2.46 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
name: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.rr)
variables:
CI_NAME: Azure Pipelines
CI_BUILD_ID: $(Build.BuildId)
CI_BUILD_URL: "https://dev.azure.com/sunpy/sunpy/_build/results?buildId=$(Build.BuildId)"
CIBW_BUILD: cp36-* cp37-* cp38-*
CIBW_SKIP: "*-win32 *-manylinux1_i686"
schedules:
- cron: "0 0 * * *"
displayName: Daily midnight build
branches:
include:
- master
- 1.0
- 1.1
always: true
resources:
repositories:
- repository: OpenAstronomy
type: github
endpoint: sunpy
name: OpenAstronomy/azure-pipelines-templates
ref: master
trigger:
branches:
include:
- '*'
exclude:
- '*backport*'
tags:
include:
- 'v*'
exclude:
- '*dev*'
- '*pre*'
- '*post*'
jobs:
- template: run-tox-env.yml@OpenAstronomy
parameters:
submodules: false
coverage: codecov
toxdeps: tox-pypi-filter
posargs: -n=4
libraries:
apt:
- libopenjp2-7
- graphviz
brew:
- openjpeg
yum:
- openssl-devel
- freetype-devel
- libpng-devel
envs:
- macos: py38
name: py38_test
posargs: -n=1
- windows: py37
name: py37_test
- linux: py38-online
name: py38_test_online
- linux32: py38-32bit
name: py38_test_32bit
- linux: codestyle
name: python_codestyle
pytest: false
- linux: py38-hypothesis
- linux: py38-conda
name: py38_conda
libraries: {}
- linux: py37-oldestdeps
name: py37_test_oldestdeps
- linux: py38-devdeps
- linux: build_docs
posargs: " "
pytest: false
# On branches which aren't master, and not Pull Requests, build the wheels but only upload them on tags
- ${{ if and(ne(variables['Build.Reason'], 'PullRequest'), not(contains(variables['Build.SourceBranch'], 'master'))) }}:
- template: publish.yml@OpenAstronomy
parameters:
# Only Upload to PyPI on tags
${{ if startsWith(variables['Build.SourceBranch'], 'refs/tags/') }}:
pypi_connection_name : 'PyPI'
test_extras: 'dev'
test_command: 'pytest -p no:warnings --doctest-rst -m "not figure" --pyargs sunpy'
submodules: false
targets:
- wheels_linux
- wheels_macos
- sdist
dependsOn:
- py37_test
- py38_test
- py38_test_online
- py38_test_32bit
- py37_test_oldestdeps
- py38_conda