Skip to content
Merged
Show file tree
Hide file tree
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
30 changes: 30 additions & 0 deletions .github/images/fedora-43/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
FROM fedora:43

WORKDIR /souffle

# Install souffle build dependencies
RUN dnf -y update
RUN dnf -y install \
autoconf \
automake \
bash-completion \
bison \
cmake \
doxygen \
flex \
gcc-c++ \
git \
libffi-devel \
libtool \
make \
ncurses-devel \
pkg-config \
python39 \
rpm-build \
sqlite-devel \
zlib-devel

# Copy everything into souffle directory
COPY . .

ENTRYPOINT ["/bin/bash", "-l", "-c", ".github/images/entrypoint.sh"]
3 changes: 3 additions & 0 deletions .github/workflows/create-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- release: fedora-42
extension: ".rpm"
OS-name: "fedora/42"
- release: fedora-43
extension: ".rpm"
OS-name: "fedora/43"

runs-on: ubuntu-latest
steps:
Expand Down
Loading