Compare commits

..

1 Commits

Author SHA1 Message Date
2935d73b1b ci: fix arch build
Some checks failed
CI Code / Check spelling (pull_request) Successful in 21s
CI Code / Check coding style (pull_request) Successful in 35s
CI Code / Linux (arch) (pull_request) Failing after 43s
CI Code / Linux (debian) (pull_request) Successful in 6m17s
CI Code / Linux (ubuntu) (pull_request) Successful in 6m25s
CI Code / Code Coverage (pull_request) Has been cancelled
2026-02-16 16:30:37 +01:00

View File

@@ -1,10 +1,9 @@
FROM archlinux:latest
FROM archlinux
ENV TERM=xterm
ENV CC="ccache gcc"
RUN pacman -Syyu --noconfirm
RUN pacman -Syu --noconfirm
# reflector is optional - if it fails due to network issues, continue with default mirrorlist
RUN pacman -S --needed --noconfirm reflector && \
(reflector --latest 20 --protocol https --sort rate --save /etc/pacman.d/mirrorlist || true)
@@ -19,6 +18,7 @@ RUN pacman -S --needed --noconfirm \
check \
cmake \
cmocka \
glibc \
lcov \
curl \
debuginfod \