blob: 573e3cc6668ed8e62a7bed0245f97b9a0ae19f01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# https://aka.ms/yaml
jobs:
- job: build_lint_test_push
displayName: 'Build, Lint, Test, & Push'
pool:
vmImage: 'ubuntu-18.04'
variables:
BASE_CHANGED: 'True'
VENV_CHANGED: 'True'
BASE_PULL: 'False'
VENV_PULL: 'False'
steps:
- template: ci/build.yml
- template: ci/setup.yml
- template: ci/lint-test.yml
- template: ci/push.yml
|