Skip to content
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

Various minor bits #186

Merged
merged 6 commits into from
Mar 16, 2024
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: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:

- name: Upload image difference, if there are any
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Image Differences of charts.test.ts
path: |
Expand Down
136 changes: 68 additions & 68 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 9 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"join-images": "1.1.5",
"decimal.js": "10.4.3",
"ejs": "3.1.9",
"koa": "2.15.0",
"koa": "2.15.1",
"koa-body": "6.0.1",
"koa-router": "12.0.1",
"pg": "8.11.3",
Expand All @@ -35,38 +35,33 @@
"@octokit/types": "9.2.3",
"@types/jquery": "3.5.29",
"@types/ejs": "3.1.5",
"@types/koa": "2.14.0",
"@types/koa": "2.15.0",
"@types/koa-router": "7.4.8",
"@types/pg": "8.11.0",
"@types/pg": "8.11.2",
"@types/pixelmatch": "5.2.6",
"@types/pngjs": "6.0.4",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"ajv": "8.12.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"nodemon": "3.0.3",
"nodemon": "3.1.0",
"pixelmatch": "5.3.0",
"prettier": "3.2.5",
"source-map-support": "0.5.21",
"terser": "5.27.1",
"terser": "5.29.2",
"ts-jest": "29.1.2",
"typescript": "5.3.3",
"typescript": "5.4.2",
"typescript-json-schema": "0.63.0"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
[
"text",
{
"file": "coverage.txt"
}
],
"text",
[
"text-summary",
{
Expand Down
1 change: 1 addition & 0 deletions rebench.conf
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ executors:
RDB_PASS: docker
RDB_HOST: localhost
RDB_DB: rebenchdb
NODE_ENV: test

# define the benchmarks to be executed for a re-executable benchmark run
experiments:
Expand Down
10 changes: 10 additions & 0 deletions src/backend/timeline/timeline.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ <h2 class="display-5">{%= it.project.description %}</h2>


<div class="container-fluid"><div class="row flex-xl-nowrap">
{% if (it.benchmarks) { %}
<nav class="compare">
{% for (const b of it.benchmarks) {
for (const e of b.exec) { %}
Expand Down Expand Up @@ -75,5 +76,14 @@ <h4><a href="#b-{%= bb.benchName %}-{%= bb.runId %}">{%= bb.benchName %}<span cl
{% } } %}
</main>
</div></div> <!-- closing class="row flex-nowrap" and class="container-fluid" -->
{% } else { %}
<main role="main">
<div class="jumbotron">
<h1 class="display-4">No Data Available</h1>
<p class="lead">There are no benchmarks available for this project.</p>
</div>
</div>
</main>
{% } %}
</body>
</html>
Loading