summaryrefslogtreecommitdiff
path: root/schema.sql
AgeCommit message (Collapse)Author
2020-10-08add build architecture to schema of depcheck tableHelmut Grohne
2020-10-08add build architecture to schema of depstate tableHelmut Grohne
2020-10-08add build architecture to schema of buildrequests tableHelmut Grohne
2020-10-07add build architecture to schema of building tableHelmut Grohne
2020-10-07add build architecture to schema of builds tableHelmut Grohne
2020-10-05support concurrent buildsHelmut Grohne
Add new table "building" for recording builds in progress. When a concurrent build is issued, it will avoid building a source package that is presently built. It will also avoid building for an architecture that is presently built for. The latter condition helps reduce the number of satisfiability issues.
2020-10-04drop mips as a release architectureHelmut Grohne
2020-01-13fetch and display bugsHelmut Grohne
Retrieve bugs from udd-mirror by tags/usertags and display relevant bug numbers in the webapp.
2020-01-13schema.sql: index builds on sourceHelmut Grohne
The per-source page rendered by webapp.py incurs a lot of query that can be sped up using this index.
2019-03-24table buildreqeusts should have an explicit idHelmut Grohne
We rely on the id being constant. However, sqlite does not guarantee that the implicit rowid stays constant across vacuum. Making the rowid explicit fixes that.
2019-03-23allow scheduling builds via webappHelmut Grohne
2019-03-17license the beast as gpl-2+Helmut Grohne
2019-03-05schema.sql: improve unique indexHelmut Grohne
Most of the time, we'll query depstate by source. Thus it should come first in the uniqueness constraint.
2019-02-03initial checkinHelmut Grohne