-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathazure-pipelines.yml
47 lines (42 loc) · 1007 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
39
40
41
42
43
44
45
46
47
trigger:
batch: true
branches:
include:
- main
pr:
branches:
include:
- main
schedules:
- cron: '0 0 * * 0'
displayName: Weekly build
branches:
include:
- main
always: true
resources:
repositories:
- repository: OpsGuildAutomationRepo
type: git
name: Engineering/OpsGuild.Automation
ref: refs/heads/main
- repository: templates
type: github
name: osisoft/OSI-Samples
endpoint: osisoft/OSI-Samples
variables:
- template: '/miscellaneous/build_templates/variables.yml@templates'
- name: analysisProject
value: Lib_Python
jobs:
- template: '/miscellaneous/build_templates/code-analysis.yml@templates'
parameters:
buildSteps:
- script: |
echo Install tools
call pip install wheel
call pip install twine
echo Build library
call python setup.py sdist bdist_wheel
echo Complete
displayName: 'Build'