-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipeline.yml
75 lines (64 loc) · 1.62 KB
/
azure-pipeline.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
trigger:
batch: true
branches:
include:
- main
pr:
branches:
include:
- main
schedules:
- cron: '0 0 * * 0'
displayName: Weekly build
branches:
include:
- main
always: true
resources:
repositories:
- repository: OpsGuildAutomationRepo
type: git
name: DevOps/opsguild.automation
ref: refs/heads/main
- repository: templates
type: github
name: AVEVA/AVEVA-Samples
endpoint: AVEVA
variables:
- name: analysisProject
value: Auth-CC_Rust
parameters:
- name: pool
default: DevOps Managed Containers Build
- name: containerDemands
type: object
default: ['Agent.OS -equals Linux']
jobs:
- job: Tests
condition: ne(variables['Build.Reason'], 'Schedule')
pool:
name: ${{ parameters.pool }}
demands: ${{ parameters.containerDemands }}
steps:
- template: '/miscellaneous/build_templates/appsettings.yml@templates'
parameters:
secrets: 'TenantId, ClientId, ClientSecret, Resource'
- script: curl https://sh.rustup.rs -sSf | sh -s -- -y
displayName: 'Install Rust'
- script: |
sudo apt update
sudo apt-get install gcc
displayName: 'Install linker'
- script: |
source $HOME/.cargo/env
cargo test --all
displayName: 'Run tests'
condition: always()
- script: |
source $HOME/.cargo/env
cargo clippy --all
displayName: 'Run clippy'
condition: always()
- template: '/miscellaneous/build_templates/code-analysis.yml@templates'
parameters:
skipPolaris: true