forked from evergreen-ci/gimlet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevergreen.yaml
179 lines (169 loc) · 5.03 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
168
169
170
171
172
173
174
175
176
177
178
179
stepback: false
command_type: test
ignore:
- "*.md" # don't schedule tests if a commit only changes markdown files
- "*.rst"
#######################################
# YAML Templates #
#######################################
variables:
- &run-build
# runs a build operations. The task name in evergreen should
# correspond to a make target for the build operation.
name: test
commands:
- command: git.get_project
type: system
params:
directory: gopath/src/github.com/evergreen-ci/gimlet
- func: setup-mongodb
- func: run-make
vars: { target: "${task_name}" }
#######################################
# Functions #
#######################################
functions:
run-make:
command: subprocess.exec
params:
working_dir: gopath/src/github.com/evergreen-ci/gimlet
binary: make
args: ["${target}"]
include_expansions_in_env: ["DISABLE_COVERAGE", "GO_BIN_PATH", "GOROOT", "RACE_DETECTOR", "TEST_TIMEOUT"]
env:
GOPATH: ${workdir}/gopath
setup-mongodb:
- command: subprocess.exec
type: setup
params:
env:
MONGODB_URL: ${mongodb_url}
DECOMPRESS: ${decompress}
working_dir: gopath/src/github.com/evergreen-ci/gimlet
command: make get-mongodb
- command: subprocess.exec
type: setup
params:
background: true
working_dir: gopath/src/github.com/evergreen-ci/gimlet
command: make start-mongod
- command: subprocess.exec
type: setup
params:
working_dir: gopath/src/github.com/evergreen-ci/gimlet
command: make check-mongod
- command: subprocess.exec
type: setup
params:
working_dir: gopath/src/github.com/evergreen-ci/gimlet
command: make init-rs
#######################################
# Tasks #
#######################################
post:
- command: gotest.parse_files
type: setup
params:
files:
- "gopath/src/github.com/evergreen-ci/gimlet/build/output.*"
- command: s3.put
type: system
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_files_include_filter:
[
"gopath/src/github.com/evergreen-ci/gimlet/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:
["gopath/src/github.com/evergreen-ci/gimlet/build/output.*.coverage"]
remote_file: evergreen/${task_id}/
bucket: mciuploads
content_type: text/plain
permissions: public-read
display_name: "(txt) coverage:"
tasks:
# the build (with and without the race detector) and lint tasks use
# a template that does not include test result parsing.
- name: lint
tags: ["report"]
commands:
- command: git.get_project
params:
directory: gopath/src/github.com/evergreen-ci/gimlet
- func: run-make
vars: { target: "lint" }
- name: coverage
tags: ["report"]
commands:
- command: git.get_project
params:
directory: gopath/src/github.com/evergreen-ci/gimlet
- func: setup-mongodb
- func: run-make
vars:
target: "coverage-html"
- <<: *run-build
tags: ["test"]
name: test
#######################################
# Buildvariants #
#######################################
buildvariants:
- name: race-detector
display_name: Race Detector (Arch Linux)
expansions:
DISABLE_COVERAGE: true
GO_BIN_PATH: /opt/golang/go1.16/bin/go
GOROOT: /opt/golang/go1.16
RACE_DETECTOR: true
TEST_TIMEOUT: 15m
mongodb_url: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1804-4.0.13.tgz
run_on:
- archlinux-new-small
tasks:
- name: ".test"
- name: coverage
display_name: Coverage
run_on:
- ubuntu1804-small
expansions:
GO_BIN_PATH: /opt/golang/go1.16/bin/go
GOROOT: /opt/golang/go1.16
TEST_TIMEOUT: 15m
mongodb_url: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1804-4.0.3.tgz
tasks:
- name: ".report"
stepback: false
- name: ubuntu
display_name: Ubuntu 18.04
expansions:
GO_BIN_PATH: /opt/golang/go1.16/bin/go
GOROOT: /opt/golang/go1.16
DISABLE_COVERAGE: true
mongodb_url: https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1804-4.0.3.tgz
run_on:
- ubuntu1804-small
tasks:
- ".test"
- name: macos
display_name: macOS
expansions:
DISABLE_COVERAGE: true
GO_BIN_PATH: /opt/golang/go1.16/bin/go
GOROOT: /opt/golang/go1.16
mongodb_url: https://fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-4.0.3.tgz
run_on:
- macos-1014
tasks:
- name: ".test"