-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines.yml
38 lines (34 loc) · 1015 Bytes
/
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
# File: azure-pipelines.yml
# Date: 30-May-2024
#
name: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.rr)
trigger:
- master
pr:
- master
- staging
schedules:
- cron: "0 12 * * 0"
displayName: Weekly Sunday build
branches:
include:
- master
always: true
jobs:
- template: azure-template-tox-job.yml
parameters: {tox: 'format_pep8', python: '3.9', os: 'linux'}
- template: azure-template-tox-job.yml
parameters: {tox: 'lint_pylint', python: '3.9', os: 'linux'}
- template: azure-template-tox-job.yml
parameters: {tox: 'test_coverage', python: '3.9', os: 'linux'}
#
- template: azure-template-tox-job.yml
parameters: {tox: 'py39', python: '3.9', os: 'linux'}
- template: azure-template-tox-job.yml
parameters: {tox: 'py39', python: '3.9', os: 'macos'}
#
- template: azure-template-publish-job.yml
parameters: {tox: 'py39', python: '3.9', os: 'macos'}
- template: azure-template-publish-job.yml
parameters: {tox: 'py39', python: '3.9', os: 'linux'}
#