-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines.yml
43 lines (42 loc) · 1.03 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
stages:
- stage: compilation_check
displayName: Compilation check
jobs:
- template: rust/check.yml@templates
parameters:
rust: stable
all_features: true
- stage: clippy_check
displayName: Clippy check
jobs:
- template: rust/clippy.yml@templates
parameters:
rust: stable
allow_fail: true
- stage: cargo_testing
displayName: Cargo test(s)
jobs:
- template: rust/test.yml@templates
parameters:
rust: stable
id: stable
cross: true
allow_fail: false
test_list:
- "--all"
- "--features=config-file"
- template: rust/test.yml@templates
parameters:
rust: nightly
id: nightly
cross: true
allow_fail: false
test_list:
- "--all"
- "--features=config-file"
resources:
repositories:
- repository: templates
type: github
name: bazaah/azure-templates
endpoint: bazaah