Jump to content

BPO development

From postmarketOS Wiki
Revision as of 18:47, 1 March 2019 by Ollieparanoid (talk | contribs) (Submitting the same job again: changing the status isn't needed)

Various resources on builds.postmarketos.org (bpo) development, which will be our future binary repository infrastructure. This article is only relevant for people who wish to contribute to that effort, it has nothing to do with running postmarketOS or creating packages for it.

Local development environment

Requirements

Setup

Build the custom bpo docker container and run it, together with MariaDB and phpMyAdmin docker containers:

$ git clone https://gitlab.com/postmarketOS/build.postmarketos.org.git
$ cd build.postmarketos.org/devel-env
$ cd devel-env
$ ./run.sh

You can access bpo at http://localhost and phpMyAdmin at http://localhost:8080 (login with: root, devsetup).

Submitting a job

Open phpMyAdmin and open bpo / commit. Create a new entry:

INSERT INTO `commit` (`id`, `ref`, `branch`, `message`, `status`)
VALUES ('1', 'e8a7926eb6004ba57ae8b9a7250ce563188dd808', 'master', 'hello world', 'INDEXING');

Make sure that bpo is still running, and execute:

$ cd devel-env
$ ./api-task-submit.sh > /tmp/out.html && head /tmp/out.html

When something goes wrong, this will output a full html page. In that case, the error is in the <title> tag, and you can see the whole thing with a stack trace and links to browse the code by opening the HTML page.

$ firefox /tmp/out.html

When it went right, a new job should appear on top of your personal builds.sr.ht start page.

Submitting the same job again

  • Remove the entry that appeared in the queue table
  • Now you can run api-task-submit.sh again

Clearing the database

$ cd devel-env
$ ./clean.sh

Database

Status values for the "commits" table

  • INDEXING not running yet
  • BUILDING currently building on sr.ht
  • FAILED build failed on sr.ht
  • SUPERSEDED a job for a newer version of the package has been submitted
  • DONE everything build successfully