From 1d58022071f9573586f71f006870b599a4220d3c Mon Sep 17 00:00:00 2001 From: Fabian Zickgraf Date: Mon, 4 Oct 2021 11:10:53 +0200 Subject: [PATCH] Work around expired Let's Encrypt root certificate See https://github.com/gap-system/gap-docker-base/issues/30 --- templates/Tests.yml.j2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/Tests.yml.j2 b/templates/Tests.yml.j2 index c04cf1e..b4c3399 100644 --- a/templates/Tests.yml.j2 +++ b/templates/Tests.yml.j2 @@ -29,7 +29,8 @@ jobs: - run: | export HOME="/home/gap" cd /home/gap/.gap/pkg/ - sudo apt update + # work around https://github.com/gap-system/gap-docker-base/issues/30 + sudo apt -o Acquire::https::Verify-Peer="false" update sudo apt dist-upgrade -y sudo apt install -y texlive-latex-extra{% for apt_package in (ci_ubuntu_additional_apt_packages | default([ ])) %} {{ apt_package }}{% endfor %} cp ./{{ package.name }}/ci_gaprc /home/gap/.gap/gaprc