Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Fedora CI to Fedora 41 #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions fedora-ci/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG FEDORA_VERSION=39
ARG FEDORA_VERSION=41

FROM fedora:${FEDORA_VERSION}

Expand All @@ -13,7 +13,7 @@ ENV cxx_compiler=$cxx_compiler
RUN dnf install -y clang compiler-rt lld cmake make pkgconf-pkg-config \
perl ragel file-devel glib2-devel libarchive-devel libevent-devel libicu-devel luajit-devel openssl-devel sqlite-devel zlib-devel \
clang-devel llvm-devel libsodium-devel ninja-build git && \
rm /var/log/*.log && rm -r /var/cache/dnf
rm /var/log/*.log

RUN set -x; \
sysArch="$(uname -m)" && \
Expand Down Expand Up @@ -47,12 +47,12 @@ RUN dnf install -y \
file-libs glib2 libevent libicu libsodium luajit openssl-libs pcre sqlite-libs && \
dnf debuginfo-install -y \
glibc glib2 libsodium luajit && \
rm /var/log/*.log && rm -r /var/cache/dnf
rm /var/log/*.log

RUN dnf install -y \
python3 python3-pip python3-setuptools python3-demjson python3-psutil python3-requests python3-tornado python3-pynacl\
opendkim redis gdb && \
rm /var/log/*.log && rm -r /var/cache/dnf && \
rm /var/log/*.log && \
pip3 install --no-cache --disable-pip-version-check --no-binary :all: robotframework

RUN useradd -G wheel -m build -p ''
Expand Down