Skip to content

Commit

Permalink
Merge branch 'zappolowski-update-ci-images-pt-2'
Browse files Browse the repository at this point in the history
  • Loading branch information
fwsmit committed Feb 18, 2024
2 parents f272c2e + 0838e8f commit fa3e715
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Example: `make REPO=../dunst.git ci-run-alpine`
- Debian Bookworm (`debian-bookworm`)
- Debian Bullseye (`debian-bullseye`)
- Debian Buster (`debian-buster`)
- Fedora 30 (`fedora30`)
- Fedora 39 (`fedora39`)
- Ubuntu 20.04 (`ubuntu-focal`)
- Ubuntu 22.04 (`ubuntu-jammy`)

Expand Down
13 changes: 5 additions & 8 deletions ci/Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
FROM alpine:3.11
FROM alpine:3.18

RUN apk add --no-cache \
bash \
cairo \
cairo-dev \
clang \
compiler-rt \
compiler-rt-static \
curl \
dbus \
dbus-dev \
findutils \
# it seems like some font needs to be available for pango to properly
# work - otherwise valgrind complains about jumps depending on
# uninitialized values
font-dejavu \
gcc \
git \
glib \
Expand All @@ -28,7 +30,6 @@ RUN apk add --no-cache \
libxscrnsaver-dev \
make \
musl-dev \
openssh-client \
pango \
pango-dev \
valgrind \
Expand All @@ -38,10 +39,6 @@ RUN apk add --no-cache \
wayland-libs-cursor \
wayland-libs-server \
wayland-protocols \
# Link the compiler libs to the right directory, clang searches them in
# /usr/lib/clang/9.0.0/lib/linux for some weird reason
&& mkdir /usr/lib/clang/9.0.0/lib/ \
&& ln -sT /usr/lib/clang/9.0.0/ /usr/lib/clang/9.0.0/lib/linux \
&& true

RUN set -ex; \
Expand Down
19 changes: 9 additions & 10 deletions ci/Dockerfile.archlinux
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FROM archlinux/base
FROM archlinux:base-devel

RUN pacman -Syu --needed --noconfirm \
base-devel \
clang \
gcovr \
gdk-pixbuf2 \
Expand All @@ -12,21 +11,21 @@ RUN pacman -Syu --needed --noconfirm \
libxrandr \
libxss \
pango \
perl \
valgrind \
wayland \
wayland-protocols \
lcov \
# it seems like some font needs to be available for pango to properly
# work - otherwise valgrind complains about jumps depending on
# uninitialized values
ttf-dejavu \
&& true

RUN ln -sT /usr/bin/core_perl/pod2man /usr/bin/pod2man

RUN set -ex; \
. /etc/profile; \
cpan -i PerlIO::gzip JSON; \
git clone https://github.com/linux-test-project/lcov.git; \
make -C lcov -j install; \
rm lcov -rf; \
:;
# Normally, re-login would trigger a source of /etc/profile.d/debuginfod.sh.
# This won't happen here so we just set it up manually.
ENV DEBUGINFOD_URLS="https://debuginfod.archlinux.org"

ADD entrypoint.sh /srv/entrypoint

Expand Down
2 changes: 1 addition & 1 deletion ci/Dockerfile.fedora
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:33
FROM fedora:39

RUN true \
&& dnf install -y \
Expand Down

0 comments on commit fa3e715

Please sign in to comment.