summaryrefslogtreecommitdiff
path: root/ci/Containerfile
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-04-30 10:33:10 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-04-30 10:33:10 +0200
commitfb929e16e90050b3ac852e4be14444c3a1d000b6 (patch)
tree81e126cf2155c2d8984ae1dabb6fd091b183c41a /ci/Containerfile
parent29770f0a5a046c28ae6c84600f7c4192d5765e73 (diff)
downloadturns-fb929e16e90050b3ac852e4be14444c3a1d000b6.tar.xz
turns-fb929e16e90050b3ac852e4be14444c3a1d000b6.zip
ci: simplify image
Diffstat (limited to 'ci/Containerfile')
-rw-r--r--ci/Containerfile12
1 files changed, 2 insertions, 10 deletions
diff --git a/ci/Containerfile b/ci/Containerfile
index 16be545..dc22bab 100644
--- a/ci/Containerfile
+++ b/ci/Containerfile
@@ -10,8 +10,8 @@ RUN pacman-key --init \
'glibc' \
&& pacman -Syu --noconfirm --noprogressbar --needed \
'catch2>=3.6' \
- 'cmake>=3.29' \
- 'gcc>=14.1.0' \
+ 'cmake>=3.31' \
+ 'gcc>=14.2.0' \
'git' \
'gtkmm-4.0>=4.18' \
'libadwaita>=1.7' \
@@ -21,14 +21,6 @@ RUN pacman-key --init \
'weston' \
&& locale-gen \
&& useradd -m builduser \
- && echo 'builduser ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers \
- && mkdir aur && chown builduser: aur \
- && cd aur \
- && sudo -u builduser git clone 'https://aur.archlinux.org/cambalache.git' \
- && cd cambalache \
- && sudo -u builduser makepkg -irs --noconfirm --noprogressbar --needed \
- && cd ../.. \
- && rm -rf aur \
&& yes | pacman -Sccdd
ENV XDG_RUNTIME_DIR=/tmp \