builds
3 rows where job_id = 26
This data as json, CSV (advanced)
| id ▼ | timestamp | time | result | build_id | url | repo | branch | sha | host | job_id | uses_success_cache | success_cache_hit |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 845 | 1750252369308 | 2351078.0 | SUCCESS | 2380 | https://integration.wikimedia.org/ci/job/debian-glue/2380/ | operations/debs/trafficserver | master | 69c8fd3badbddb6f28a23cf2a1c33002a0f24ca1 | integration-agent-pkgbuilder-1004 | debian-glue 26 | ||
| 846 | 1590411687331 | 476143.0 | SUCCESS | 1908 | https://integration.wikimedia.org/ci/job/debian-glue/1908/ | operations/debs/doxygen | debian/buster-wikimedia | 1552a26c3ba5151fbd3bf4418634ad8ccb49c67d | integration-agent-pkgbuilder-1001 | debian-glue 26 | ||
| 847 | 1588775266821 | 493183.0 | SUCCESS | 1876 | https://integration.wikimedia.org/ci/job/debian-glue/1876/ | operations/debs/doxygen | debian/buster-wikimedia | 1552a26c3ba5151fbd3bf4418634ad8ccb49c67d | integration-agent-pkgbuilder-1001 | debian-glue 26 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE builds (
id INTEGER PRIMARY KEY,
timestamp INTEGER NOT NULL,
time REAL NOT NULL,
result TEXT,
build_id INTEGER NOT NULL,
url TEXT UNIQUE NOT NULL,
repo TEXT NOT NULL,
branch TEXT NOT NULL,
sha TEXT NOT NULL,
host TEXT NOT NULL,
job_id INTEGER NOT NULL,
uses_success_cache BOOLEAN,
success_cache_hit BOOLEAN,
UNIQUE(build_id,job_id),
CONSTRAINT result_check CHECK (result IN ('SUCCESS', 'FAILURE', 'ABORTED', 'UNSTABLE', 'NOT_BUILT', NULL)),
FOREIGN KEY(job_id) REFERENCES jobs(id)
);