mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
CI: add Fedora 37
This commit is contained in:
parent
0e97c29eb8
commit
417ff10a0a
2 changed files with 38 additions and 0 deletions
|
@ -147,6 +147,13 @@ fedora36_task:
|
||||||
<< : *RESOURCES_TEMPLATE
|
<< : *RESOURCES_TEMPLATE
|
||||||
<< : *CI_TEMPLATE
|
<< : *CI_TEMPLATE
|
||||||
|
|
||||||
|
fedora37_task:
|
||||||
|
container:
|
||||||
|
# Fedora 37 EOL: Around Dec 2024
|
||||||
|
dockerfile: ci/fedora-37/Dockerfile
|
||||||
|
<< : *RESOURCES_TEMPLATE
|
||||||
|
<< : *CI_TEMPLATE
|
||||||
|
|
||||||
centosstream9_task:
|
centosstream9_task:
|
||||||
container:
|
container:
|
||||||
# Stream 9 EOL: Around Dec 2027
|
# Stream 9 EOL: Around Dec 2027
|
||||||
|
|
31
ci/fedora-37/Dockerfile
Normal file
31
ci/fedora-37/Dockerfile
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
FROM fedora:37
|
||||||
|
|
||||||
|
# A version field to invalidate Cirrus's build cache when needed, as suggested in
|
||||||
|
# https://github.com/cirruslabs/cirrus-ci-docs/issues/544#issuecomment-566066822
|
||||||
|
ENV DOCKERFILE_VERSION 20221127
|
||||||
|
|
||||||
|
RUN dnf -y install \
|
||||||
|
bison \
|
||||||
|
ccache \
|
||||||
|
cmake \
|
||||||
|
diffutils \
|
||||||
|
findutils \
|
||||||
|
flex \
|
||||||
|
gcc \
|
||||||
|
gcc-c++ \
|
||||||
|
git \
|
||||||
|
libpcap-devel \
|
||||||
|
make \
|
||||||
|
openssl \
|
||||||
|
openssl-devel \
|
||||||
|
procps-ng \
|
||||||
|
python3 \
|
||||||
|
python3-devel \
|
||||||
|
python3-pip\
|
||||||
|
sqlite \
|
||||||
|
swig \
|
||||||
|
which \
|
||||||
|
zlib-devel \
|
||||||
|
&& dnf clean all && rm -rf /var/cache/dnf
|
||||||
|
|
||||||
|
RUN pip3 install websockets junit2html
|
Loading…
Add table
Add a link
Reference in a new issue