-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
40 lines (34 loc) · 898 Bytes
/
azure-pipelines.yml
File metadata and controls
40 lines (34 loc) · 898 Bytes
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
# https://aka.ms/yaml
trigger:
branches:
include:
- main
paths:
exclude:
- .gitignore
- .editorconfig
- .github
- README.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- SECURITY.md
- LICENSE.txt
- azure-pipelines.yml
- docs
- basis-set
pool:
vmImage: ubuntu-latest
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.x'
addToPath: true
architecture: 'x64'
- script: python3 scripts/build.py --install-build-tools --release --debug --assume-yes
displayName: 'Install Build Tools'
- script: python3 scripts/build.py --build --release --debug --assume-yes
displayName: 'Build LightAIMD'
- script: python3 scripts/build.py --sanity-test --release --debug --assume-yes
displayName: 'Run Sanity Test'
- script: python3 scripts/build.py --module-test --release --debug --assume-yes
displayName: 'Run Module Test'