)]}'
{
  "log": [
    {
      "commit": "59848a94cfc19e626239b934fecf40243d1279ad",
      "tree": "c2dcdfe75ba618e7e8a834f86d67ad8d32db457a",
      "parents": [
        "2044af08cad0c36fa4fd677294f56929569eb72d"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Sat Mar 04 00:41:18 2023 +0000"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Mar 17 15:24:18 2023 +0000"
      },
      "message": "manibuilder: Add official AlmaLinux images\n\nThe dockerfile is a mix from the CentOS and the Fedora one. For Meson,\nwe require an additional repository, `powertools` in AlmaLinux 8 and\n`crb` in AlmaLinux 9. As `ccache` is missing, we have to override $(CC).\n\nChange-Id: I33c62a5cc9bf05c626179acb35250a8a3293f8c1\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/73473\nTested-by: build bot (Jenkins) \u003cno-reply@coreboot.org\u003e\n"
    },
    {
      "commit": "05f0f7c2c5bb0a5fdcc3d683e8d73960bd3cd119",
      "tree": "2a90f7f36158ce6b795b4c58f66cdc2ed07c6bd7",
      "parents": [
        "93bffcd0a4c969a52a6b49272b7e200a338613af"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Mar 03 17:08:16 2023 +0000"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Mar 17 15:24:18 2023 +0000"
      },
      "message": "manibuilder: Prepare for official multi-arch images\n\nNow that we can use official multi-arch images prepare for tag names\nmatching the upstream ones. These will be prefixed with their respective\narchitecture, e.g. `ppc64le/`. To make the existing dockerfiles for\nDebian and Ubuntu usable with the official images, remove their\n`-debootstrap` suffix.\n\nChange-Id: I11a7d13c7eb976205093f16dc9d3f5a57bc8f1bb\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/73433\nTested-by: build bot (Jenkins) \u003cno-reply@coreboot.org\u003e\n"
    },
    {
      "commit": "93bffcd0a4c969a52a6b49272b7e200a338613af",
      "tree": "c130077d719bdf76df940891d7a57add78e4c154",
      "parents": [
        "fb433baeeaa721a8ee90a10e8d3c41bc68ddb131"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Mar 03 17:15:40 2023 +0000"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Mar 17 15:24:18 2023 +0000"
      },
      "message": "manibuilder/multiarch: Use persistence feature of qemu-user-static\n\nWe can use a single container now to provide `qemu-user` binaries for\nmulti-arch containers. This allows us to use official multi-arch\ncontainers that don\u0027t contain such a binary for the host architecture.\n\nWe pin the version to 7.2.0-1 for reproducibility. However, in this\nversion, `qemu-arm-static` has some trouble running Alpine containers\n(programs crashing on 3.14 and 3.15). So keep that one at 6.3.0-8.\n\nChange-Id: Iadf7ac318f99e521ce8c0acc0c41f59711e7c397\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/73432\nTested-by: build bot (Jenkins) \u003cno-reply@coreboot.org\u003e\n"
    },
    {
      "commit": "fb433baeeaa721a8ee90a10e8d3c41bc68ddb131",
      "tree": "b351bf56a3fe4df91dfb8de85ede6b0343614771",
      "parents": [
        "25ea7173f089ef3a615aee644fdc8edb98f462d1"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Sat Mar 04 19:09:47 2023 +0000"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Mar 17 15:24:18 2023 +0000"
      },
      "message": "manibuilder: Switch to a per-image ccache\n\nWe used to have one big, shared ccache dir used by almost all images.\nThis doesn\u0027t scale well when we already know that parallel builds\n(for different architectures, for instance) don\u0027t have a chance to\nhit the same cache entries. Also, newer versions of ccache seem to\nhave a problem with this setup (Debian Bookworm and Fedora 37, to be\ninvestigated).\n\nWe pass a per-image identifier `${IDENT}` into the build and place\nthe cache in `/ccache/${IDENT}`. However, the configuration is kept\nin the default location, e.g. `~/.ccache/ccache.conf`. We can\u0027t\nconfigure this via ENV variables easily, because some distributions\noverride them.\n\nWe used to have the default 5GiB ccache limit. Now with the growing\nlist of images, we set a 32MiB limit per image. This should keep us\nwithin 5GiB for a while.\n\nChange-Id: I082f95aee050efad85867b309d363f61bfea751e\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/73471\nTested-by: build bot (Jenkins) \u003cno-reply@coreboot.org\u003e\n"
    },
    {
      "commit": "25ea7173f089ef3a615aee644fdc8edb98f462d1",
      "tree": "0d6683f5ee037c3a5ae283652573a41a927eef42",
      "parents": [
        "9b243b7adaf856e5e3f31a28df0bc35917656806"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Mar 03 17:06:30 2023 +0000"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Mar 17 15:24:18 2023 +0000"
      },
      "message": "manibuilder: Replace `master` branch with `main`\n\nChange-Id: I4a7c6d0238cf915473cd5a2143e6afc00817caac\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/73431\nTested-by: build bot (Jenkins) \u003cno-reply@coreboot.org\u003e\n"
    },
    {
      "commit": "9b2f05235353e65ce17f3144d8634032e4e18aea",
      "tree": "564ded34728e8aee64be71726cd358bf92301f06",
      "parents": [
        "8fbd36fe10a76cc770e9ae117411a67239eebbd4"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Sun Feb 26 15:17:03 2023 +0000"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Mar 17 15:24:18 2023 +0000"
      },
      "message": "manibuilder/alpine: Fix SSL cert issues\n\nOnce more, try to find a way to build all the containers. They enabled a\nredirection from http to https recently and there is no option to skip\ncertificate checks. So the only move is to provide a current CA certifi-\ncate by ourselves. Note, the added certificate is the current Root CA\nof Let\u0027s Encrypt. Due to issues with the ca-certificates packages in\nAlpine v3.7, nothing using another Root CA will work this way.\n\nChange-Id: I3bb340428b863ea5e24ad6e1da6f3fe428eb187d\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/73402\nTested-by: build bot (Jenkins) \u003cno-reply@coreboot.org\u003e\n"
    },
    {
      "commit": "48b1fde6b91f211d22a45ef73e36f6d3b1359ef7",
      "tree": "dc086c8f3a6fbf1b54c07b1a3005a424aac39c27",
      "parents": [
        "d4fbbb48bc7c94b59f9065f942de567cb95c5e0a"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Sun Dec 11 17:15:27 2022 +0000"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Dec 30 01:16:31 2022 +0100"
      },
      "message": "manibuilder/anita: Enable KVM when running on x86_64\n\nThis requires us to use privileged containers. Although, the QEMU\ninside should still provide enough encapsulation, we might want to\ndisable this in automated environments.\n\nChange-Id: I767287649511b46cd25125bcbceea8a0446fc76b\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/70914\nReviewed-by: Angel Pons \u003cth3fanbus@gmail.com\u003e\nTested-by: Nico Huber \u003cnico.h@gmx.de\u003e\nTested-by: build bot (Jenkins) \u003cno-reply@coreboot.org\u003e\n"
    },
    {
      "commit": "d4fbbb48bc7c94b59f9065f942de567cb95c5e0a",
      "tree": "351f86ebad280d85913bc21a103c02006372d798",
      "parents": [
        "725a19e090637c576a80901bfc7283ac268e6c84"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Sun Dec 11 17:02:57 2022 +0000"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Dec 30 01:16:31 2022 +0100"
      },
      "message": "manibuilder: Let build tests fail with the original error code\n\nWe can still run all tests with `make -k`.\n\nChange-Id: Ib59b8863186e5f7ecbaa2aa65cdbd51913dcf8e7\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/70913\nTested-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-by: Angel Pons \u003cth3fanbus@gmail.com\u003e\n"
    },
    {
      "commit": "725a19e090637c576a80901bfc7283ac268e6c84",
      "tree": "48cc87a1bfd5a7cfdbb944b6d17822797df27642",
      "parents": [
        "fb9c18a7aafb2f71b49f004f43800cf213ccb6cd"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Sun Dec 11 00:01:04 2022 +0100"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Dec 30 01:16:30 2022 +0100"
      },
      "message": "manibuilder: Adapt TEST_REMOTE and TEST_REVISION defaults\n\nIf ${TEST_LOCAL} is set, adapt the default remote and revision\naccordingly. Now this variable is all that is needed to test\na local flashrom commit, e.g.\n\n  $ make alpine:amd64-v3.7 TEST_LOCAL\u003d~/flashrom\n\nChange-Id: I435beb81fd05db25fa6b0a7b517d4c8b9b57ceea\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/70912\nTested-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-by: Angel Pons \u003cth3fanbus@gmail.com\u003e\n"
    },
    {
      "commit": "fb9c18a7aafb2f71b49f004f43800cf213ccb6cd",
      "tree": "823e26022ad7981d5ab6d4b36110cd8c3d97edf5",
      "parents": [
        "bfe6484b3bb66fcbfc986ec9bc43155a8c8ea61b"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Sat Dec 10 23:59:19 2022 +0100"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Dec 30 01:16:30 2022 +0100"
      },
      "message": "manibuilder: Add service container with local Git access\n\nAdd a new target `local-git` that spawns a service container with a\nlocal Git daemon. The variable ${TEST_LOCAL} needs to point to the\ndirectory of a local git repository.\n\nChange-Id: I9e465551d3398fdb8d173a0a8fbd169561241a74\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/70911\nReviewed-by: Angel Pons \u003cth3fanbus@gmail.com\u003e\nTested-by: Nico Huber \u003cnico.h@gmx.de\u003e\n"
    },
    {
      "commit": "bfe6484b3bb66fcbfc986ec9bc43155a8c8ea61b",
      "tree": "8f4979e8d829f33dc37d368ba9dad39194b75881",
      "parents": [
        "aa359a73420bf8c731f2f9733eb2f146f559825c"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Sat Dec 10 23:54:24 2022 +0100"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Dec 30 01:16:30 2022 +0100"
      },
      "message": "manibuilder: Automatically create `manibuilder` network bridge\n\nCreate a network bridge for all manibuilder containers. We\u0027ll add a\nservice container with access to a local Git repository later.\n\nChange-Id: Idb03c21dbd12bef59a2c683e169015e286c04d11\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/70910\nReviewed-by: Angel Pons \u003cth3fanbus@gmail.com\u003e\nTested-by: Nico Huber \u003cnico.h@gmx.de\u003e\n"
    },
    {
      "commit": "aa359a73420bf8c731f2f9733eb2f146f559825c",
      "tree": "2cd6f9600d25001f868b6c73f851e2cd8ed21603",
      "parents": [
        "34846e46a08dd743e8419d9e9ade00e3d3da0c5f"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Sat Dec 10 23:52:46 2022 +0100"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Dec 30 01:16:30 2022 +0100"
      },
      "message": "manibuilder: Make Git remote overridable\n\nChange-Id: Idfc1272f5a7370d3a183835ddf4052db374d6a26\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/70909\nReviewed-by: Angel Pons \u003cth3fanbus@gmail.com\u003e\nTested-by: Nico Huber \u003cnico.h@gmx.de\u003e\n"
    },
    {
      "commit": "34846e46a08dd743e8419d9e9ade00e3d3da0c5f",
      "tree": "bf228bd4dd70b83e1101565f3e6ca338fe980a08",
      "parents": [
        "f4a1b5d2e8c74f4ad24764aca8b7d3ad53c1e176"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Sat Dec 10 23:45:38 2022 +0100"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Dec 30 01:16:29 2022 +0100"
      },
      "message": "manibuilder: Set $(TEST_REVISION) default in make\n\nChange-Id: I8320110a19c434b6d464d8036cc2a99fff41f63e\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/70908\nReviewed-by: Angel Pons \u003cth3fanbus@gmail.com\u003e\nTested-by: Nico Huber \u003cnico.h@gmx.de\u003e\n"
    },
    {
      "commit": "c0b52db332ce95ca3227b35b3263c858882e0b5d",
      "tree": "945d00d92a9a9056e1a5f9927fca4647cb0644b6",
      "parents": [
        "7cb43957c5fe405cd82584f0a54428f2d2d286ff"
      ],
      "author": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Thu Dec 15 12:42:32 2022 +0000"
      },
      "committer": {
        "name": "Nico Huber",
        "email": "nico.h@gmx.de",
        "time": "Fri Dec 30 01:16:29 2022 +0100"
      },
      "message": "Import manibuilder from flashrom master\n\nReferences to the upstream repository have been changed to\n`flashrom-stable.git`. The directory `flashrom` is kept,\nthough, so existing containers can be used for both projects.\n\nChange-Id: I8ba148e30602e8e03e3858f7c1eb6789230654d6\nSigned-off-by: Nico Huber \u003cnico.h@gmx.de\u003e\nReviewed-on: https://review.coreboot.org/c/flashrom-stable/+/70906\nReviewed-by: Angel Pons \u003cth3fanbus@gmail.com\u003e\nTested-by: Nico Huber \u003cnico.h@gmx.de\u003e\nTested-by: build bot (Jenkins) \u003cno-reply@coreboot.org\u003e\n"
    }
  ]
}
