-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines.yml
87 lines (73 loc) · 2.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
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
82
83
84
85
86
87
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: sample-adh-grafana_backend_plugin-datasource
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 }}
steps:
- task: GoTool@0
displayName: 'Install Go'
inputs:
version: '$(go-version)'
- script: npm ci
displayName: 'Install dependencies'
- script: npm test
displayName: 'Run TS tests'
- script: go get -u github.com/grafana/grafana-plugin-sdk-go
displayName: 'Install Go SDK for Grafana'
- script: go mod tidy
displayName: 'Install dependencies'
- script: go test -v ./...
displayName: 'Run Go Tests'
- task: PublishTestResults@2
inputs:
testResultsFormat: JUnit
testResultsFiles: '*.xml'
failTaskOnFailedTests: true
searchFolder: '$(Build.SourcesDirectory)/coverage'
testRunTitle: '$(Agent.JobName) on $(Agent.OS)'
displayName: 'Publish test results'
condition: always()
- template: '/miscellaneous/build_templates/code-analysis.yml@templates'
parameters:
buildSteps:
- task: GoTool@0
displayName: 'Install Go'
inputs:
version: '$(go-version)'
- script: echo %PATH%