Skip to content

ci: merge staging to master #74

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Aug 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions benches/db_1KiB.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ async function main() {
},
},
dbPath: dbPath1,
// @ts-ignore - version of js-logger is incompatible (remove when js-db updates to 5.* here)
logger,
});
// Db2 uses workers
Expand All @@ -52,7 +51,6 @@ async function main() {
},
},
dbPath: dbPath2,
// @ts-ignore - version of js-logger is incompatible (remove when js-db updates to 5.* here)
logger,
});
db2.setWorkerManager(workerManager);
Expand Down
2 changes: 0 additions & 2 deletions benches/db_1MiB.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ async function main() {
},
},
dbPath: dbPath1,
// @ts-ignore - version of js-logger is incompatible (remove when js-db updates to 5.* here)
logger,
});
// Db2 uses workers
Expand All @@ -52,7 +51,6 @@ async function main() {
},
},
dbPath: dbPath2,
// @ts-ignore - version of js-logger is incompatible (remove when js-db updates to 5.* here)
logger,
});
db2.setWorkerManager(workerManager);
Expand Down
2 changes: 0 additions & 2 deletions benches/db_24KiB.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ async function main() {
},
},
dbPath: dbPath1,
// @ts-ignore - version of js-logger is incompatible (remove when js-db updates to 5.* here)
logger,
});
// Db2 uses workers
Expand All @@ -52,7 +51,6 @@ async function main() {
},
},
dbPath: dbPath2,
// @ts-ignore - version of js-logger is incompatible (remove when js-db updates to 5.* here)
logger,
});
db2.setWorkerManager(workerManager);
Expand Down
14 changes: 7 additions & 7 deletions benches/results/crypto_100KiB.chart.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</head>
<body>
<div class="container">
<canvas id="chart1658988295568" width="16" height="9"></canvas>
<canvas id="chart1660891834716" width="16" height="9"></canvas>
</div>
<script>
const format = (num) => {
Expand All @@ -51,18 +51,18 @@
chunked.map((chunk) => chunk.join('')).join(' ') + fractionStr
)
}
const ctx1658988295568 = document
.getElementById('chart1658988295568')
const ctx1660891834716 = document
.getElementById('chart1660891834716')
.getContext('2d')
const chart1658988295568 = new Chart(ctx1658988295568, {
const chart1660891834716 = new Chart(ctx1660891834716, {
type: 'bar',
data: {
labels: ["encrypt 100 KiB of data","decrypt 100 KiB of data","encrypt 100 KiB of data with workers","decrypt 100 KiB of data with workers"],
datasets: [
{
data: [160,156,121,137],
backgroundColor: ["hsl(120, 85%, 55%)","hsl(117, 85%, 55%)","hsl(90.74400000000001, 85%, 55%)","hsl(102.74400000000001, 85%, 55%)"],
borderColor: ["hsl(120, 85%, 55%)","hsl(117, 85%, 55%)","hsl(90.74400000000001, 85%, 55%)","hsl(102.74400000000001, 85%, 55%)"],
data: [158,171,101,146],
backgroundColor: ["hsl(110.88000000000001, 85%, 55%)","hsl(120, 85%, 55%)","hsl(70.872, 85%, 55%)","hsl(102.456, 85%, 55%)"],
borderColor: ["hsl(110.88000000000001, 85%, 55%)","hsl(120, 85%, 55%)","hsl(70.872, 85%, 55%)","hsl(102.456, 85%, 55%)"],
borderWidth: 2,
},
],
Expand Down
Loading