mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 21:18:20 +00:00
CI: Add OpenSUSE Tumbleweed
This commit is contained in:
parent
2c263aa6c7
commit
39f98778e4
2 changed files with 40 additions and 0 deletions
|
@ -201,6 +201,13 @@ opensuse_leap_15_3_task:
|
|||
<< : *RESOURCES_TEMPLATE
|
||||
<< : *CI_TEMPLATE
|
||||
|
||||
opensuse_tumbleweed_task:
|
||||
container:
|
||||
# Opensuse Tumbleweed has no EOL
|
||||
dockerfile: ci/opensuse-tumbleweed/Dockerfile
|
||||
<< : *RESOURCES_TEMPLATE
|
||||
<< : *CI_TEMPLATE
|
||||
|
||||
ubuntu22_task:
|
||||
container:
|
||||
# Ubuntu 22.04 EOL: April 2027
|
||||
|
|
33
ci/opensuse-tumbleweed/Dockerfile
Normal file
33
ci/opensuse-tumbleweed/Dockerfile
Normal file
|
@ -0,0 +1,33 @@
|
|||
FROM opensuse/tumbleweed
|
||||
|
||||
# A version field to invalide Cirrus's build cache when needed, as suggested in
|
||||
# https://github.com/cirruslabs/cirrus-ci-docs/issues/544#issuecomment-566066822
|
||||
ENV DOCKERFILE_VERSION 20220705
|
||||
|
||||
RUN zypper refresh \
|
||||
&& zypper in -y \
|
||||
bison \
|
||||
ccache \
|
||||
cmake \
|
||||
curl \
|
||||
diffutils \
|
||||
findutils \
|
||||
flex \
|
||||
gcc \
|
||||
gcc-c++ \
|
||||
git \
|
||||
gzip \
|
||||
libopenssl-devel \
|
||||
libpcap-devel \
|
||||
make \
|
||||
python3 \
|
||||
python3-devel \
|
||||
python3-pip \
|
||||
swig \
|
||||
tar \
|
||||
util-linux \
|
||||
which \
|
||||
zlib-devel \
|
||||
&& rm -rf /var/cache/zypp
|
||||
|
||||
RUN pip3 install websockets junit2html
|
Loading…
Add table
Add a link
Reference in a new issue