commit 631807cba0775b4c44c9961eb4886080a750aa7e
parent fc65203d24aaf1a17edb518dc97bce6ea47e9255
Author: Lukas F. Hartmann <lukas@mntre.com>
Date: Mon, 11 Mar 2024 22:15:47 +0100
CI: are we missing ca-certificates?
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
@@ -20,7 +20,7 @@ build:
script: |
set -x
apt update
- apt-get --no-install-recommends -y install git build-essential avr-libc gcc-avr gcc-arm-none-eabi libnewlib-arm-none-eabi
+ apt-get --no-install-recommends -y install ca-certificates git build-essential avr-libc gcc-avr gcc-arm-none-eabi libnewlib-arm-none-eabi
# use the timestamp of the latest git commit to set reproducible S_D_E
if [ -z ${SOURCE_DATE_EPOCH:+x} ] && git -C . rev-parse 2>/dev/null; then
SOURCE_DATE_EPOCH=$(git log -1 --format=%ct)