forked from oss-review-toolkit/ort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.azure-pipelines.yml
36 lines (32 loc) · 995 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
trigger: none # Do not build branches on push.
pr:
- master
schedules:
- cron: 0 2 * * *
displayName: Nightly build
branches:
include:
- master
always: true # Also build if there were no code changes, because many of our tests rely on external infrastructure.
variables:
GRADLE_USER_HOME: $(Pipeline.Workspace)/.gradle
ORT_DATA_DIR: $(Pipeline.Workspace)/.ort
# Tool versions.
BOWER_VERSION: 1.8.8
BUNDLER_VERSION: 2.1.4
COMPOSER_VERSION: 5.1.0 # The version refers to the installer, not to Composer.
CONAN_VERSION: 1.18.0
GO_DEP_VERSION: 0.5.4
PYTHON_PIPENV_VERSION: 2018.11.26
RUST_VERSION: 1.35.0
STACK_VERSION: 2.1.3.20190715
VIRTUALENV_VERSION: 20.0.14
stages:
- stage: run
displayName: Run
jobs:
- template: .azure-pipelines/DockerBuild.yml
- template: .azure-pipelines/LinuxTest.yml
- template: .azure-pipelines/LinuxAnalyzerTest.yml
- template: .azure-pipelines/WindowsTest.yml
- template: .azure-pipelines/WindowsAnalyzerTest.yml