-
Notifications
You must be signed in to change notification settings - Fork 22
/
evergreen.yaml
165 lines (154 loc) · 3.8 KB
/
evergreen.yaml
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#######################################
# YAML Templates #
#######################################
variables:
- &run-build
# runs a build operation. The task name in evergreen should
# correspond to a make target for the build operation.
name: test
must_have_test_results: true
commands:
- func: get-project-and-modules
- func: run-make
vars: { target: "${task_name}" }
#######################################
# Functions #
#######################################
functions:
get-project-and-modules:
- command: git.get_project
type: system
params:
directory: grip
- command: subprocess.exec
type: setup
params:
working_dir: grip
binary: make
args: ["mod-tidy"]
include_expansions_in_env: ["GOROOT"]
run-make:
command: subprocess.exec
type: test
params:
working_dir: grip
binary: make
args: ["${make_args}", "${target}"]
include_expansions_in_env: ["GOROOT", "RACE_DETECTOR"]
#######################################
# Tasks #
#######################################
post:
- command: gotest.parse_files
type: setup
params:
files:
- "grip/build/output.*"
- command: s3.put
type: system
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_files_include_filter: ["grip/build/output.*.coverage.html"]
remote_file: evergreen/${task_id}/
bucket: mciuploads
content_type: text/html
permissions: public-read
display_name: "(html) coverage:"
- command: s3.put
type: system
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_files_include_filter: ["grip/build/output.*.coverage"]
remote_file: evergreen/${task_id}/
bucket: mciuploads
content_type: text/plain
permissions: public-read
display_name: "(txt) coverage:"
tasks:
- <<: *run-build
tags: ["report"]
name: lint-grip
- <<: *run-build
tags: ["report"]
name: lint-logging
- <<: *run-build
tags: ["report"]
name: lint-message
- <<: *run-build
tags: ["report"]
name: lint-recovery
- <<: *run-build
tags: ["report"]
name: lint-send
- <<: *run-build
tags: ["report"]
name: lint-slogger
- name: verify-mod-tidy
tags: ["report"]
commands:
- command: git.get_project
type: system
params:
directory: grip
- func: run-make
vars: { target: "${task_name}" }
- <<: *run-build
tags: ["report"]
name: coverage
- <<: *run-build
tags: ["test"]
name: test-grip
- <<: *run-build
tags: ["test"]
name: test-logging
- <<: *run-build
tags: ["test"]
name: test-message
- <<: *run-build
tags: ["test"]
name: test-recovery
- <<: *run-build
tags: ["test"]
name: test-send
- <<: *run-build
tags: ["test"]
name: test-slogger
- <<: *run-build
tags: ["test"]
name: benchmark-send
must_have_test_results: false
#######################################
# Buildvariants #
#######################################
buildvariants:
- name: lint
display_name: Lint
expansions:
GOROOT: /opt/golang/go1.20
run_on:
- ubuntu2204-small
tasks: [ ".report" ]
- name: ubuntu
display_name: Ubuntu 22.04
expansions:
GOROOT: /opt/golang/go1.20
RACE_DETECTOR: true
run_on:
- ubuntu2204-small
tasks: [ ".test" ]
- name: macos
display_name: macOS
expansions:
GOROOT: /opt/golang/go1.20
run_on:
- macos-1100-arm64
tasks: [ ".test" ]
- name: windows
display_name: Windows
run_on:
- windows-vsCurrent-small
expansions:
GOROOT: C:/golang/go1.20
tasks: [ ".test" ]