-
Notifications
You must be signed in to change notification settings - Fork 7
290 lines (237 loc) · 7.22 KB
/
Copy pathbenchmark.yml
File metadata and controls
290 lines (237 loc) · 7.22 KB
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
281
282
283
284
285
286
287
288
289
290
name: Performance Benchmarks
defaults:
run:
shell: bash
permissions:
contents: write
pull-requests: write
env:
DOTNET_VERSION: '8.0.x'
on:
release:
types: [ published ]
workflow_dispatch:
jobs:
benchmark-mysql-reads:
name: MySQL Reads Benchmark
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./benchmark
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Load .env file
uses: xom9ikk/dotenv@v2.3.0
with:
load-mode: strict
path: benchmark
- name: Docker compose
uses: hoverkraft-tech/compose-action@v1.5.1
with:
services: mysqldb
- name: Run Benchmark
run: ./scripts/run_single_benchmark.sh mysql reads
- name: Upload Results
uses: actions/upload-artifact@v4
if: success()
with:
name: mysql-reads-results
path: BenchmarkDotNet.Artifacts/mysql/reads
benchmark-mysql-writes:
name: MySQL Writes Benchmark
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./benchmark
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Load .env file
uses: xom9ikk/dotenv@v2.3.0
with:
load-mode: strict
path: benchmark
- name: Docker compose
uses: hoverkraft-tech/compose-action@v1.5.1
with:
services: mysqldb
- name: Run Benchmark
run: ./scripts/run_single_benchmark.sh mysql writes
- name: Upload Results
uses: actions/upload-artifact@v4
if: success()
with:
name: mysql-writes-results
path: BenchmarkDotNet.Artifacts/mysql/writes
benchmark-postgresql-reads:
name: PostgreSQL Reads Benchmark
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./benchmark
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Load .env file
uses: xom9ikk/dotenv@v2.3.0
with:
load-mode: strict
path: benchmark
- name: Docker compose
uses: hoverkraft-tech/compose-action@v1.5.1
with:
services: postgresdb
- name: Run Benchmark
run: ./scripts/run_single_benchmark.sh postgresql reads
- name: Upload Results
uses: actions/upload-artifact@v4
if: success()
with:
name: postgresql-reads-results
path: BenchmarkDotNet.Artifacts/postgresql/reads
benchmark-postgresql-writes:
name: PostgreSQL Writes Benchmark
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./benchmark
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Load .env file
uses: xom9ikk/dotenv@v2.3.0
with:
load-mode: strict
path: benchmark
- name: Docker compose
uses: hoverkraft-tech/compose-action@v1.5.1
with:
services: postgresdb
- name: Run Benchmark
run: ./scripts/run_single_benchmark.sh postgresql writes
- name: Upload Results
uses: actions/upload-artifact@v4
if: success()
with:
name: postgresql-writes-results
path: BenchmarkDotNet.Artifacts/postgresql/writes
benchmark-sqlite-reads:
name: SQLite Reads Benchmark
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./benchmark
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Load .env file
uses: xom9ikk/dotenv@v2.3.0
with:
load-mode: strict
path: benchmark
- name: Run Benchmark
run: ./scripts/run_single_benchmark.sh sqlite reads
- name: Upload Results
uses: actions/upload-artifact@v4
if: success()
with:
name: sqlite-reads-results
path: BenchmarkDotNet.Artifacts/sqlite/reads
benchmark-sqlite-writes:
name: SQLite Writes Benchmark
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./benchmark
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Load .env file
uses: xom9ikk/dotenv@v2.3.0
with:
load-mode: strict
path: benchmark
- name: Run Benchmark
run: ./scripts/run_single_benchmark.sh sqlite writes
- name: Upload Results
uses: actions/upload-artifact@v4
if: success()
with:
name: sqlite-writes-results
path: BenchmarkDotNet.Artifacts/sqlite/writes
push-results:
name: Push Results
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./benchmark
if: always() && github.event_name == 'release'
needs: [
benchmark-mysql-reads, benchmark-mysql-writes,
benchmark-postgresql-reads, benchmark-postgresql-writes,
benchmark-sqlite-reads, benchmark-sqlite-writes
]
steps:
- uses: actions/checkout@v4
- name: Download MySQL Reads Results
uses: actions/download-artifact@v4
with:
name: mysql-reads-results
path: BenchmarkDotNet.Artifacts/mysql/reads
- name: Download MySQL Writes Results
uses: actions/download-artifact@v4
with:
name: mysql-writes-results
path: BenchmarkDotNet.Artifacts/mysql/writes
- name: Download PostgreSQL Reads Results
uses: actions/download-artifact@v4
with:
name: postgresql-reads-results
path: BenchmarkDotNet.Artifacts/postgresql/reads
- name: Download PostgreSQL Writes Results
uses: actions/download-artifact@v4
with:
name: postgresql-writes-results
path: BenchmarkDotNet.Artifacts/postgresql/writes
- name: Download SQLite Reads Results
uses: actions/download-artifact@v4
with:
name: sqlite-reads-results
path: BenchmarkDotNet.Artifacts/sqlite/reads
- name: Download SQLite Writes Results
uses: actions/download-artifact@v4
with:
name: sqlite-writes-results
path: BenchmarkDotNet.Artifacts/sqlite/writes
- name: Update Wasm Plugin
run: ./scripts/update_wasm_plugin.sh
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
base: main
title: update benchmark results
commit-message: update benchmark results
branch: update-benchmark-results
branch-suffix: timestamp
delete-branch: true