-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This bumps all CI setups to b465b01.
- Loading branch information
Showing
4 changed files
with
113 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Copyright (c) 2020-2023 by the Zeek Project. See LICENSE for details. | ||
|
||
FROM debian:bookworm-slim | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV CCACHE_DIR "/var/spool/ccache" | ||
ENV CCACHE_COMPRESS 1 | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN apt-get -q update && \ | ||
apt-get install -y --no-install-recommends \ | ||
binutils \ | ||
bison \ | ||
ccache \ | ||
cmake \ | ||
file \ | ||
flex \ | ||
gcc \ | ||
g++ \ | ||
git \ | ||
google-perftools \ | ||
jq \ | ||
libfl-dev \ | ||
libgoogle-perftools-dev \ | ||
libkrb5-dev \ | ||
libmaxminddb-dev \ | ||
libpcap0.8-dev \ | ||
libssl-dev \ | ||
locales-all \ | ||
make \ | ||
ninja-build \ | ||
python3 \ | ||
python3-dev \ | ||
python3-pip \ | ||
python3-setuptools \ | ||
python3-wheel \ | ||
swig \ | ||
zlib1g-dev && \ | ||
pip3 install --break-system-packages --no-cache-dir "btest>=0.66" pre-commit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Copyright (c) 2020-2023 by the Zeek Project. See LICENSE for details. | ||
|
||
FROM fedora:39 | ||
|
||
RUN echo 'LC_CTYPE="C"' >> /etc/locale.conf \ | ||
&& echo 'LC_ALL="C"' >> /etc/locale.conf \ | ||
&& echo 'LANG="C"' >> /etc/locale.conf \ | ||
# Install Spicy build dependencies | ||
&& dnf install -y ccache git ninja-build cmake flex bison gcc-c++ findutils diffutils python3-pip which openssl-devel zlib-devel \ | ||
&& pip3 install "btest>=0.66" \ | ||
# Install rpmdevtools for packaging RPM files. | ||
&& dnf install -y rpmdevtools | ||
|
||
WORKDIR /root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright (c) 2020-2023 by the Zeek Project. See LICENSE for details. | ||
|
||
FROM opensuse/leap:15.5 | ||
|
||
RUN zypper addrepo https://download.opensuse.org/repositories/openSUSE:Leap:15.2:Update/standard/openSUSE:Leap:15.2:Update.repo \ | ||
&& zypper refresh \ | ||
&& zypper install -y \ | ||
bison \ | ||
ccache \ | ||
cmake \ | ||
flex \ | ||
gcc9-c++ \ | ||
git \ | ||
ninja \ | ||
python3 \ | ||
python3-pip \ | ||
rpmbuild \ | ||
which \ | ||
zlib-devel \ | ||
&& zypper clean | ||
|
||
RUN pip3 install "btest>=0.66" sphinx-rtd-theme | ||
|
||
ENV CXX g++-9 | ||
ENV CC gcc-9 |