Show a cover letter.

GET /api/covers/2708/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 2708,
    "url": "https://patchwork.libcamera.org/api/covers/2708/?format=api",
    "web_url": "https://patchwork.libcamera.org/cover/2708/",
    "project": {
        "id": 1,
        "url": "https://patchwork.libcamera.org/api/projects/1/?format=api",
        "name": "libcamera",
        "link_name": "libcamera",
        "list_id": "libcamera_core",
        "list_email": "libcamera-devel@lists.libcamera.org",
        "web_url": "",
        "scm_url": "",
        "webscm_url": ""
    },
    "msgid": "<20200120125544.12562-1-kieran.bingham@ideasonboard.com>",
    "date": "2020-01-20T12:55:41",
    "name": "[libcamera-devel,0/3] CI: Initial gitlab ci builder",
    "submitter": {
        "id": 4,
        "url": "https://patchwork.libcamera.org/api/people/4/?format=api",
        "name": "Kieran Bingham",
        "email": "kieran.bingham@ideasonboard.com"
    },
    "mbox": "https://patchwork.libcamera.org/cover/2708/mbox/",
    "series": [
        {
            "id": 643,
            "url": "https://patchwork.libcamera.org/api/series/643/?format=api",
            "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=643",
            "date": "2020-01-20T12:55:41",
            "name": "CI: Initial gitlab ci builder",
            "version": 1,
            "mbox": "https://patchwork.libcamera.org/series/643/mbox/"
        }
    ],
    "comments": "https://patchwork.libcamera.org/api/covers/2708/comments/",
    "headers": {
        "Return-Path": "<kieran.bingham@ideasonboard.com>",
        "Received": [
            "from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 863E0600F5\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tMon, 20 Jan 2020 13:55:48 +0100 (CET)",
            "from localhost.localdomain\n\t(cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 09C16A62;\n\tMon, 20 Jan 2020 13:55:47 +0100 (CET)"
        ],
        "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1579524948;\n\tbh=fpYYtj94Ez2olk5h6DQs3yuiMls1SrZ7NBbE4DfwEh8=;\n\th=From:To:Cc:Subject:Date:From;\n\tb=Qo6ojmSuvHk9LNDJc2Vg+CbqqtnIpW15CUCiCTJyfSiYQUjl8FJHYNrX2tZ6Bmi4Y\n\trWXIRd+XEg1qiiITFdiIKJ7T1oz3K2q6DctCkxRreDAAorgVaiCe2IIUU3jaMIwXNu\n\tORJ7JTyGvFsal258CLAYYLTcH2+enR34GE1QfRg8=",
        "From": "Kieran Bingham <kieran.bingham@ideasonboard.com>",
        "To": "LibCamera Devel <libcamera-devel@lists.libcamera.org>",
        "Date": "Mon, 20 Jan 2020 12:55:41 +0000",
        "Message-Id": "<20200120125544.12562-1-kieran.bingham@ideasonboard.com>",
        "X-Mailer": "git-send-email 2.20.1",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[libcamera-devel] [PATCH 0/3] CI: Initial gitlab ci builder",
        "X-BeenThere": "libcamera-devel@lists.libcamera.org",
        "X-Mailman-Version": "2.1.29",
        "Precedence": "list",
        "List-Id": "<libcamera-devel.lists.libcamera.org>",
        "List-Unsubscribe": "<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>",
        "List-Archive": "<https://lists.libcamera.org/pipermail/libcamera-devel/>",
        "List-Post": "<mailto:libcamera-devel@lists.libcamera.org>",
        "List-Help": "<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>",
        "List-Subscribe": "<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>",
        "X-List-Received-Date": "Mon, 20 Jan 2020 12:55:48 -0000"
    },
    "content": "I've kept this local for quite some time, but with renewed interest in running\nautomated builds, I figured it's time to post.\n\nThis initial gitlab-ci builder uses an alpine:edge image which currently uses\nGCC 9. This has identified a build error on the pipeline_handler header, for\nwhich the first patch in the series corrects.\n\nhttps://gitlab.freedesktop.org/wayland/ci-templates provides a range of further\npossible templates which we could utilise moving forwards. It would be helpful\nif we had a full matrix build of multiple OS types and compiler versions (and\ntypes).\n\nI have visions in the future that we could run the bulk of our tests on a qemu\nimage with VIMC/VIVID etc, but that's out of scope for the moment. I've looked\nin the past at building a UML kernel image to run the tests in, but the\nmedia-trees do not easily build in UML yet, and so that is also out of scope.\n\nKieran Bingham (3):\n  pipeline_handler: Include system header for dev_t\n  Documentation: Add linkcheck target\n  ci: gitlab: Provide initial automated testing\n\n .gitlab-ci.yml                           | 18 ++++++++++++++++++\n Documentation/meson.build                |  6 ++++++\n src/libcamera/include/pipeline_handler.h |  1 +\n 3 files changed, 25 insertions(+)\n create mode 100644 .gitlab-ci.yml"
}