-
Notifications
You must be signed in to change notification settings - Fork 4
/
azure-pipelines.yml
68 lines (58 loc) · 1.3 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
trigger:
tags:
include:
- v*
branches:
include:
- develop
- release*
paths:
exclude:
- README.md
- CHANGELOG.md
- LICENSE
variables:
GOROOT: '/usr/local/go1.18'
GOPATH: '/tmp/go'
GOBIN: '$(GOPATH)/bin'
jobs:
- job: Test
pool:
vmImage: 'Ubuntu-20.04'
steps:
- script: |
set -e
mkdir -p '$(GOBIN)'
mkdir -p '$(GOPATH)/pkg'
echo '##vso[task.prependpath]$(GOBIN)'
echo '##vso[task.prependpath]$(GOROOT)/bin'
displayName: 'Set up the Go workspace'
- task: GoTool@0
inputs:
version: '1.18'
goPath: $(GOPATH)
goBin: $(GOBIN)
displayName: 'Install Golang'
- script: |
set -e
make lint
displayName: 'Lint Source'
- script: |
set -e
make test
displayName: 'Unit Test'
- script: |
set -e
test/bootstrap.bash
displayName: 'Bootstrap tests'
- script: |
set -e
test/setup.bash
displayName: 'Setup test environment'
- script: |
set -e
test/run.bash
displayName: 'Run tests'
- script: |
test/teardown.bash
displayName: 'Teardown test environment'