-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Docker custom docker containers to build and test bpfilter, those containers are stored into the repo's registery and used during subsequent CI run as cache to speed up the CI.
- Loading branch information
1 parent
8433a67
commit 6c34b95
Showing
8 changed files
with
319 additions
and
170 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
FROM fedora:39 | ||
|
||
RUN dnf --disablerepo=* --enablerepo=fedora,updates --nodocs --setopt install_weak_deps=False -y install \ | ||
bison \ | ||
bpftool \ | ||
clang-tools-extra \ | ||
cmake \ | ||
flex \ | ||
libcmocka-devel \ | ||
doxygen \ | ||
gcc-c++ \ | ||
git \ | ||
jq \ | ||
lcov \ | ||
libasan \ | ||
libbpf-devel \ | ||
libnl3-devel \ | ||
libubsan \ | ||
python3-breathe \ | ||
python3-furo \ | ||
python3-linuxdoc \ | ||
python3-scapy \ | ||
python3-sphinx \ | ||
pkgconf \ | ||
google-benchmark-devel \ | ||
libgit2-devel && \ | ||
dnf clean all -y |
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,27 @@ | ||
FROM fedora:40 | ||
|
||
RUN dnf --disablerepo=* --enablerepo=fedora,updates --nodocs --setopt install_weak_deps=False -y install \ | ||
bison \ | ||
bpftool \ | ||
clang-tools-extra \ | ||
cmake \ | ||
flex \ | ||
libcmocka-devel \ | ||
doxygen \ | ||
gcc-c++ \ | ||
git \ | ||
jq \ | ||
lcov \ | ||
libasan \ | ||
libbpf-devel \ | ||
libnl3-devel \ | ||
libubsan \ | ||
python3-breathe \ | ||
python3-furo \ | ||
python3-linuxdoc \ | ||
python3-scapy \ | ||
python3-sphinx \ | ||
pkgconf \ | ||
google-benchmark-devel \ | ||
libgit2-devel && \ | ||
dnf clean all -y |
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,29 @@ | ||
FROM fedora:41 | ||
|
||
RUN dnf --disablerepo=* --enablerepo=fedora,updates --nodocs --setopt install_weak_deps=False -y install \ | ||
bison \ | ||
bpftool \ | ||
clang-tools-extra \ | ||
cmake \ | ||
flex \ | ||
libcmocka-devel \ | ||
doxygen \ | ||
gcc-c++ \ | ||
git \ | ||
jq \ | ||
lcov \ | ||
libasan \ | ||
libbpf-devel \ | ||
libnl3-devel \ | ||
libubsan \ | ||
python3-breathe \ | ||
python3-dateutil \ | ||
python3-furo \ | ||
python3-GitPython \ | ||
python3-linuxdoc \ | ||
python3-scapy \ | ||
python3-sphinx \ | ||
pkgconf \ | ||
google-benchmark-devel \ | ||
libgit2-devel && \ | ||
dnf clean all -y |
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,33 @@ | ||
FROM ubuntu:24.04 | ||
|
||
RUN apt-get update && \ | ||
apt-get install --no-install-recommends -y \ | ||
bison \ | ||
linux-tools-common \ | ||
clang-tidy \ | ||
clang-format \ | ||
cmake \ | ||
doxygen \ | ||
flex \ | ||
g++ \ | ||
gcc \ | ||
git \ | ||
jq \ | ||
lcov \ | ||
libasan8 \ | ||
libbpf-dev \ | ||
libcmocka-dev \ | ||
libnl-3-dev \ | ||
libubsan1 \ | ||
make \ | ||
pkgconf \ | ||
python3-breathe \ | ||
python3-scapy \ | ||
furo \ | ||
python3-pip \ | ||
python3-sphinx \ | ||
libbenchmark-dev \ | ||
libgit2-dev && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip install --break-system-packages linuxdoc |
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,35 @@ | ||
FROM ubuntu:24.10 | ||
|
||
RUN apt-get update && \ | ||
apt-get install --no-install-recommends -y \ | ||
bison \ | ||
linux-tools-common \ | ||
clang \ | ||
clang-tidy \ | ||
clang-format \ | ||
cmake \ | ||
doxygen \ | ||
flex \ | ||
g++ \ | ||
gcc \ | ||
git \ | ||
jq \ | ||
lcov \ | ||
libasan8 \ | ||
libbpf-dev \ | ||
libcmocka-dev \ | ||
libnl-3-dev \ | ||
libubsan1 \ | ||
make \ | ||
pkgconf \ | ||
python3-breathe \ | ||
python3-setuptools \ | ||
python3-scapy \ | ||
furo \ | ||
python3-pip \ | ||
python3-sphinx \ | ||
libbenchmark-dev \ | ||
libgit2-dev && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip install --break-system-packages linuxdoc |
Oops, something went wrong.