-
Notifications
You must be signed in to change notification settings - Fork 2
/
azure-pipelines.yml
82 lines (71 loc) · 1.94 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
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
76
77
78
79
80
81
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_Postman
parameters:
- name: pool
default: DevOps Managed Containers Build
- name: containerDemands
type: object
default: ['Agent.OS -equals Windows_NT']
jobs:
- job: Tests
condition: ne(variables['Build.Reason'], 'Schedule')
pool:
name: ${{ parameters.pool }}
demands: ${{ parameters.containerDemands }}
variables:
- name: 0.TenantId
value: $(TenantId)
- name: 0.NamespaceId
value: $(NamespaceId)
- name: 0.ClientId
value: $(ClientId)
- name: 0.ClientSecret
value: $(ClientSecret)
- name: 0.StreamId
value: $(StreamId)
steps:
- template: '/miscellaneous/build_templates/appsettings.yml@templates'
parameters:
secrets: 'TenantId, NamespaceId, ClientId, ClientSecret, StreamId'
- script: npm install -g newman
displayName: 'Install newman'
- script: npm ci
displayName: 'Install dependencies'
- script: newman run .\postman_collection.json -d .\appsettings.json --verbose
displayName: 'Run tests'
- task: PublishTestResults@2
inputs:
testResultsFormat: JUnit
testResultsFiles: '*.xml'
failTaskOnFailedTests: true
searchFolder: '$(Build.SourcesDirectory)/TestResults'
testRunTitle: '$(Agent.JobName) on $(Agent.OS)'
displayName: 'Publish test results'
condition: always()