Skip to content
Merged
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
11 changes: 8 additions & 3 deletions .github/fedora-rawhide.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ FROM fedora:rawhide

# Rawhide does not have an `updates` repo (it is the rolling development
# branch; all updates land directly in `fedora`).
# Rawhide only ships versioned libgit2 packages, hence libgit2_1.9-devel
# instead of libgit2-devel.
RUN dnf --disablerepo=* --enablerepo=fedora --nodocs --setopt=install_weak_deps=False -y install \
autoconf \
automake \
Expand All @@ -25,7 +27,7 @@ RUN dnf --disablerepo=* --enablerepo=fedora --nodocs --setopt=install_weak_deps=
lcov \
libbpf-devel \
libcmocka-devel \
libgit2-devel \
libgit2_1.9-devel \
libpfm-devel \
libtool \
pipx \
Expand All @@ -34,12 +36,15 @@ RUN dnf --disablerepo=* --enablerepo=fedora --nodocs --setopt=install_weak_deps=
python3-dateutil \
python3-furo \
python3-GitPython \
python3-linuxdoc \
python3-pip \
python3-scapy \
python3-sphinx \
sed \
xxd && \
dnf clean all -y

RUN pipx install --global ast-grep-cli && \
# python3-linuxdoc is not installable until it is rebuilt against rawhide's
# current Python, install it from PyPI instead.
RUN pip install --break-system-packages linuxdoc && \
pipx install --global ast-grep-cli && \
ast-grep --version
Loading