summaryrefslogtreecommitdiffstats
path: root/util/manibuilder
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2022-08-24 01:31:10 +0200
committerFelix Singer <felixsinger@posteo.net>2022-09-27 13:50:13 +0000
commita567559f68ac39f102d276b805c9cf47a2f98fd4 (patch)
treedb0bf9c5c2a1ca85765a68e3f1b406a9e1b82e59 /util/manibuilder
parente31ca8c7f509d5bcdb1ce1608175fdb0758d6261 (diff)
downloadflashrom-a567559f68ac39f102d276b805c9cf47a2f98fd4.tar.gz
flashrom-a567559f68ac39f102d276b805c9cf47a2f98fd4.tar.bz2
flashrom-a567559f68ac39f102d276b805c9cf47a2f98fd4.zip
mainbuilder/debian,ubuntu: Disable TLS verification for Git commands
Disable certificate verification for Git commands, including those that run during tests. At some point, the `ca-certificates` won't get updates anymore and, ideally, existing docker images will keep working. Change-Id: I8d7dedeb97777d2f1e6e7e69aefb8cc7ca604940 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/66999 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'util/manibuilder')
-rw-r--r--util/manibuilder/Dockerfile.debian-debootstrap1
-rw-r--r--util/manibuilder/Dockerfile.ubuntu-debootstrap1
2 files changed, 2 insertions, 0 deletions
diff --git a/util/manibuilder/Dockerfile.debian-debootstrap b/util/manibuilder/Dockerfile.debian-debootstrap
index ce201f8c6..d2e0eee79 100644
--- a/util/manibuilder/Dockerfile.debian-debootstrap
+++ b/util/manibuilder/Dockerfile.debian-debootstrap
@@ -10,6 +10,7 @@ RUN \
{ apt-get -qqy install libjaylink-dev || true; } && \
apt-get clean
+ENV GIT_SSL_NO_VERIFY=1
USER mani
RUN \
cd && \
diff --git a/util/manibuilder/Dockerfile.ubuntu-debootstrap b/util/manibuilder/Dockerfile.ubuntu-debootstrap
index fe3ad1ea8..f002d9a12 100644
--- a/util/manibuilder/Dockerfile.ubuntu-debootstrap
+++ b/util/manibuilder/Dockerfile.ubuntu-debootstrap
@@ -23,6 +23,7 @@ RUN \
{ apt-get -qqy install libjaylink-dev || true; } && \
apt-get clean
+ENV GIT_SSL_NO_VERIFY=1
USER mani
RUN \
cd && \