reform

MNT Reform: Open Source Portable Computer
Log (Feed) | Files | Refs (Tags) | README

commit 8c964b480fa396feb36763617540054eedb875f0
parent 80bc531a4b0caa5d3c58f44fc737f957062c095f
Author: Lukas F. Hartmann <lukas@mntre.com>
Date:   Mon, 11 Mar 2024 22:30:59 +0100

CI: actually we need the stdc++ lib for arm

Diffstat:
M.gitlab-ci.yml | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -21,7 +21,7 @@ build: script: | set -x apt update - apt-get --no-install-recommends -y install ca-certificates git build-essential avr-libc gcc-avr gcc-arm-none-eabi libnewlib-arm-none-eabi libusb-1.0-0-dev cmake python3 libstdc++-14-dev + apt-get --no-install-recommends -y install ca-certificates git build-essential avr-libc gcc-avr gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib libusb-1.0-0-dev cmake python3 # 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)