Skip to content

WIP output JSON to gen pretty pages for reproducible-builds.org

reproducible-builds.org has a nice display of progress. To have F-Droid on there, we just need to provide the right data in a JSON file. Here are some examples:

It uses this for the database schema: https://tests.reproducible-builds.org/reproducibledb.html

Right now the JSON looks like:

[
  {
    "packageName": "org.fdroid.fdroid",
    "status": "unreproducible",
    "timestamp": 1544175692.947658,
    "versionCode": 1003050,
    "versionName": "1.3"
  }
]

But maybe it makes more sense to do this as a standalone script

Merge request reports