-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathevergreen.yaml
167 lines (156 loc) · 4.46 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
166
167
stepback: false
ignore:
- "*.rst"
- "*.md"
- ".github/*"
#######################################
# 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}" }
- &run-build-with-mongodb
# runs a make target like above, but only on systems that have a
# running mongod started for testing.
name: test
must_have_test_results: true
commands:
- func: get-project-and-modules
- func: set-up-mongodb
- func: run-make
vars: { target: "${task_name}" }
#######################################
# Functions #
#######################################
functions:
get-project-and-modules:
- command: git.get_project
type: system
params:
directory: pail
- command: subprocess.exec
type: setup
params:
working_dir: pail
binary: make
args: ["mod-tidy"]
include_expansions_in_env: ["GOROOT"]
run-make:
command: subprocess.exec
type: test
params:
working_dir: pail
binary: make
args: ["${target}"]
include_expansions_in_env: ["GOROOT", "RACE_DETECTOR"]
env:
AWS_KEY: ${aws_key}
AWS_SECRET: ${aws_secret}
set-up-mongodb:
- command: subprocess.exec
type: setup
params:
command: make get-mongodb
working_dir: pail
env:
MONGODB_DECOMPRESS: ${MONGODB_DECOMPRESS|*decompress}
MONGODB_URL: ${MONGODB_URL}
- command: subprocess.exec
type: setup
params:
command: make get-mongosh
working_dir: pail
env:
MONGOSH_DECOMPRESS: ${MONGOSH_DECOMPRESS|*decompress}
MONGOSH_URL: ${MONGOSH_URL}
- command: subprocess.exec
type: setup
params:
working_dir: pail
background: true
command: make start-mongod
- command: subprocess.exec
type: setup
params:
working_dir: pail
command: make check-mongod
#######################################
# Tasks #
#######################################
post:
- command: gotest.parse_files
type: setup
params:
files:
- "pail/build/output.*"
tasks:
# the build (with and without the race detector) and lint tasks use
# a template that does not include test result parsing.
- <<: *run-build
tags: ["lint"]
name: lint-pail
- name: verify-mod-tidy
commands:
- command: git.get_project
type: system
params:
directory: pail
- func: run-make
vars: { target: "${task_name}" }
- <<: *run-build-with-mongodb
tags: ["test"]
name: test-pail
#######################################
# Buildvariants #
#######################################
buildvariants:
- name: lint
display_name: Lint
expansions:
GOROOT: /opt/golang/go1.20
MONGODB_URL: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-6.0.6.tgz
MONGOSH_URL: https://downloads.mongodb.com/compass/mongosh-1.9.0-linux-x64.tgz
run_on:
- ubuntu2204-small
tasks:
- .lint
- verify-mod-tidy
- name: ubuntu
display_name: Ubuntu 22.04
expansions:
GOROOT: /opt/golang/go1.20
MONGODB_URL: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-6.0.6.tgz
MONGOSH_URL: https://downloads.mongodb.com/compass/mongosh-1.9.0-linux-x64.tgz
RACE_DETECTOR: true
run_on:
- ubuntu2204-small
tasks:
- name: ".test"
- name: macos
display_name: macOS
expansions:
GOROOT: /opt/golang/go1.20
MONGODB_URL: https://fastdl.mongodb.org/osx/mongodb-macos-arm64-6.0.6.tgz
MONGOSH_URL: https://downloads.mongodb.com/compass/mongosh-1.9.0-darwin-arm64.zip
MONGOSH_DECOMPRESS: unzip
run_on:
- macos-1100-arm64
tasks:
- name: ".test"
- name: windows
display_name: Windows
run_on:
- windows-vsCurrent-small
expansions:
GOROOT: C:/golang/go1.20
MONGODB_URL: https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-6.0.6.zip
MONGOSH_URL: https://downloads.mongodb.com/compass/mongosh-1.9.0-win32-x64.zip
tasks:
- name: ".test"