-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathazure-pipelines.yml
48 lines (43 loc) · 1.04 KB
/
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
48
# Soma Build Pipeline
# Builds and tests on Windows and Linux
# Enforces code style using rustfmt
# Pipeline triggers on all code changes and PRs by default.
resources:
containers:
- container: rust
image: rust:latest
jobs:
- job: quality_check
displayName: Code Quality Check
pool:
vmImage: 'ubuntu-16.04'
container: rust
steps:
- script: rustup component add clippy rustfmt
displayName: 'Install Prerequisites'
- script: cargo fmt --all -- --check
displayName: 'Check Formatting'
- script: cargo clippy --all-targets --all-features -- -D warnings
displayName: 'Run Lint'
- job: linux_build
displayName: Linux Build
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: ci/install-prerequisites.yml
parameters:
os: Linux
- template: ci/build.yml
parameters:
os: Linux
- job: windows_build
displayName: Windows Build
pool:
vmImage: 'win1803'
steps:
- template: ci/install-prerequisites.yml
parameters:
os: Windows
- template: ci/build.yml
parameters:
os: Windows