-
Notifications
You must be signed in to change notification settings - Fork 50
280 lines (215 loc) · 7.85 KB
/
test-coverage.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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
# Copyright 2024 Democratized Data Foundation
#
# Use of this software is governed by the Business Source License
# included in the file licenses/BSL.txt.
#
# As of the Change Date specified in that file, in accordance with
# the Business Source License, use of this software will be governed
# by the Apache License, Version 2.0, included in the file
# licenses/APL.txt.
name: Test Coverage Workflow
on:
pull_request:
branches:
- master
- develop
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
branches:
- master
- develop
# Default environment configuration settings.
env:
CGO_ENABLED: 1
DEFRA_CLIENT_GO: true
DEFRA_CLIENT_HTTP: false
DEFRA_CLIENT_CLI: false
DEFRA_BADGER_MEMORY: true
DEFRA_BADGER_FILE: false
DEFRA_BADGER_ENCRYPTION: false
DEFRA_MUTATION_TYPE: collection-save
DEFRA_LENS_TYPE: wasm-time
DEFRA_ACP_TYPE: local
DEFRA_VIEW_TYPE: cacheless
# We run all runners via the bash shell to provide us with a consistent set of env variables and commands
defaults:
run:
shell: bash
jobs:
# The basic matrix job tests the combination of client, database and mutation types using
# the default config settings for other options, all running on linux.
test-basic:
name: Test job
strategy:
fail-fast: false
matrix:
client-type: [go, http, cli]
database-type: [file, memory]
mutation-type: [gql, collection-named, collection-save]
runs-on: ubuntu-latest
# Overwrite the defaults based on the basic matrix
env:
DEFRA_CLIENT_GO: ${{ matrix.client-type == 'go' }}
DEFRA_CLIENT_HTTP: ${{ matrix.client-type == 'http' }}
DEFRA_CLIENT_CLI: ${{ matrix.client-type == 'cli' }}
DEFRA_BADGER_MEMORY: ${{ matrix.database-type == 'memory' }}
DEFRA_BADGER_FILE: ${{ matrix.database-type == 'file' }}
DEFRA_MUTATION_TYPE: ${{ matrix.mutation-type }}
steps:
- name: Checkout code into the directory
uses: actions/checkout@v4
- name: Setup defradb
uses: ./.github/composites/setup-defradb
- name: Test coverage & save coverage report in an artifact
uses: ./.github/composites/test-coverage-with-artifact
with:
coverage-artifact-name: "coverage_basic\
_${{ matrix.client-type }}\
_${{ matrix.database-type }}\
_${{ matrix.mutation-type }}\
"
coverage-path: coverage.txt
# This job runs the tests on other operating systems using default configurations.
test-os:
name: Test os job
strategy:
fail-fast: false
matrix:
os:
- macos-latest
# TODO: https://github.com/sourcenetwork/defradb/issues/2080
# Uncomment the line below to re-enable the windows build once this todo is resolved.
# - windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code into the directory
uses: actions/checkout@v4
- name: Setup defradb
uses: ./.github/composites/setup-defradb
- name: Test coverage & save coverage report in an artifact
uses: ./.github/composites/test-coverage-with-artifact
with:
coverage-artifact-name: "coverage_os_${{ matrix.os }}"
coverage-path: coverage.txt
# The acp matrix job tests the combinations of source-hub acp and client types on linux.
test-acp:
name: Test acp job
strategy:
fail-fast: false
matrix:
client-type: [go, http, cli]
acp-type: [source-hub]
runs-on: ubuntu-latest
env:
DEFRA_ACP_TYPE: ${{ matrix.acp-type }}
DEFRA_CLIENT_GO: ${{ matrix.client-type == 'go' }}
DEFRA_CLIENT_HTTP: ${{ matrix.client-type == 'http' }}
DEFRA_CLIENT_CLI: ${{ matrix.client-type == 'cli' }}
steps:
- name: Checkout code into the directory
uses: actions/checkout@v4
- name: Setup defradb
uses: ./.github/composites/setup-defradb
# We have to install it ourselves because it contains replace commands in its go.mod file.
- name: Install sourcehub
uses: ./.github/composites/install-sourcehub
with:
# Lock the sourcehub version until the dev branch is stable
# remove this when closed https://github.com/sourcenetwork/defradb/issues/2865
ref: c232133c35c96924509a4d955a7b450eb3624a15
- name: Test coverage & save coverage report in an artifact
uses: ./.github/composites/test-coverage-with-artifact
with:
coverage-artifact-name: "coverage_acp\
_${{ matrix.acp-type }}\
_${{ matrix.client-type }}\
"
coverage-path: coverage.txt
# The lens matrix job tests the wazero and wasmer lens on linux.
test-lens:
name: Test lens job
strategy:
fail-fast: false
matrix:
lens-type: [wazero, wasmer]
runs-on: ubuntu-latest
env:
DEFRA_LENS_TYPE: ${{ matrix.lens-type }}
steps:
- name: Checkout code into the directory
uses: actions/checkout@v4
- name: Setup defradb
uses: ./.github/composites/setup-defradb
- name: Test coverage & save coverage report in an artifact
uses: ./.github/composites/test-coverage-with-artifact
with:
coverage-artifact-name: "coverage_lens_${{ matrix.lens-type }}"
coverage-path: coverage.txt
# This job runs the materialized view tests using default configuration, on linux.
test-view:
name: Test view job
runs-on: ubuntu-latest
env:
DEFRA_VIEW_TYPE: materialized
steps:
- name: Checkout code into the directory
uses: actions/checkout@v4
- name: Setup defradb
uses: ./.github/composites/setup-defradb
- name: Test coverage & save coverage report in an artifact
uses: ./.github/composites/test-coverage-with-artifact
with:
coverage-artifact-name: "coverage_view_materialized"
coverage-path: coverage.txt
# This job runs the database with encryption tests using default configuration, on linux.
test-encryption:
name: Test encryption job
runs-on: ubuntu-latest
env:
DEFRA_BADGER_ENCRYPTION: true
steps:
- name: Checkout code into the directory
uses: actions/checkout@v4
- name: Setup defradb
uses: ./.github/composites/setup-defradb
- name: Test coverage & save coverage report in an artifact
uses: ./.github/composites/test-coverage-with-artifact
with:
coverage-artifact-name: "coverage_encryption"
coverage-path: coverage.txt
## This job gathers all the coverage reports and uploads them to code-cov
upload-coverage:
name: Upload test code coverage job
needs:
- test-basic # 18 test(s)
- test-os # 1 test(s) [excluding windows]
- test-acp # 3 test(s)
- test-lens # 2 test(s)
- test-view # 1 test(s)
- test-encryption # 1 test(s)
# Important to know:
# - We didn't use `if: always()` here, so this job doesn't run if we manually canceled.
# - `if: success()` is always implied unless `always()` or `failure()` is specified.
if: success() || failure()
runs-on: ubuntu-latest
steps:
- name: Checkout code into the directory
uses: actions/checkout@v4
- name: Download coverage reports
uses: actions/download-artifact@v4
with:
pattern: coverage_*
# Note: https://github.com/actions/download-artifact/blob/main/docs/MIGRATION.md
merge-multiple: false
path: coverage_reports
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: defradb-codecov
files: coverage_reports/**/*.txt
flags: all-tests
os: 'linux'
fail_ci_if_error: true
verbose: true