mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Merge remote-tracking branch 'origin/topic/johanna/opensuse-leap'
* origin/topic/johanna/opensuse-leap: CI: Add OpenSUSE Leap 15.2
This commit is contained in:
commit
f75da8bb08
4 changed files with 50 additions and 1 deletions
|
@ -161,6 +161,13 @@ debian9_32bit_task:
|
||||||
<< : *RESOURCES_TEMPLATE
|
<< : *RESOURCES_TEMPLATE
|
||||||
<< : *CI_TEMPLATE
|
<< : *CI_TEMPLATE
|
||||||
|
|
||||||
|
opensuse_leap_15_2_task:
|
||||||
|
container:
|
||||||
|
# Opensuse Leap 15.2 EOL: Dec 2021
|
||||||
|
dockerfile: ci/opensuse-leap-15.2/Dockerfile
|
||||||
|
<< : *RESOURCES_TEMPLATE
|
||||||
|
<< : *CI_TEMPLATE
|
||||||
|
|
||||||
ubuntu20_task:
|
ubuntu20_task:
|
||||||
container:
|
container:
|
||||||
# Ubuntu 20.04 EOL: April 2025
|
# Ubuntu 20.04 EOL: April 2025
|
||||||
|
|
17
CHANGES
17
CHANGES
|
@ -1,4 +1,21 @@
|
||||||
|
|
||||||
|
4.1.0-dev.447 | 2021-03-31 09:55:05 -0700
|
||||||
|
|
||||||
|
* CI: Add OpenSUSE Leap 15.2 (Johanna Amann, Corelight)
|
||||||
|
|
||||||
|
* Add CI task for Alpine Linux (Jon Siwek, Corelight)
|
||||||
|
|
||||||
|
* Separate stdout from stderr in btest baselines (Jon Siwek, Corelight)
|
||||||
|
|
||||||
|
Redirecting both to the same file can show platform-specific differences
|
||||||
|
(e.g. Alpine), likely due to different buffering defaults.
|
||||||
|
|
||||||
|
* Remove newline-eof canonification attempt in diff-remove-timestamps (Jon Siwek, Corelight)
|
||||||
|
|
||||||
|
* Change a <sys/errno.h> include to <errno.h> (Jon Siwek, Corelight)
|
||||||
|
|
||||||
|
Some systems (e.g. Alpine) may warn that that the former is incorrect.
|
||||||
|
|
||||||
4.1.0-dev.440 | 2021-03-30 14:57:07 -0700
|
4.1.0-dev.440 | 2021-03-30 14:57:07 -0700
|
||||||
|
|
||||||
* Fix incomplete-type for struct timeval (Andrew Benson)
|
* Fix incomplete-type for struct timeval (Andrew Benson)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
4.1.0-dev.440
|
4.1.0-dev.447
|
||||||
|
|
25
ci/opensuse-leap-15.2/Dockerfile
Normal file
25
ci/opensuse-leap-15.2/Dockerfile
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
FROM opensuse/leap:15.2
|
||||||
|
|
||||||
|
RUN zypper in -y \
|
||||||
|
cmake \
|
||||||
|
make \
|
||||||
|
gcc \
|
||||||
|
gcc-c++ \
|
||||||
|
python3 \
|
||||||
|
python3-devel \
|
||||||
|
flex \
|
||||||
|
bison \
|
||||||
|
libpcap-devel \
|
||||||
|
libopenssl-devel \
|
||||||
|
zlib-devel \
|
||||||
|
swig \
|
||||||
|
git \
|
||||||
|
curl \
|
||||||
|
python3-pip \
|
||||||
|
which \
|
||||||
|
gzip \
|
||||||
|
tar \
|
||||||
|
&& rm -rf /var/cache/zypp
|
||||||
|
|
||||||
|
|
||||||
|
RUN pip3 install junit2html
|
Loading…
Add table
Add a link
Reference in a new issue