Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/topic/timw/ci-ubuntu-24-lts'
Browse files Browse the repository at this point in the history
* origin/topic/timw/ci-ubuntu-24-lts:
  CI: Add Ubuntu 24.04 build
  • Loading branch information
timwoj committed May 17, 2024
2 parents 338ece9 + 15270e2 commit 400a085
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ opensuse_tumbleweed_task:
prepare_script: ./ci/opensuse-tumbleweed/prepare.sh
<< : *CI_TEMPLATE

ubuntu24_task:
container:
# Ubuntu 24.04 EOL: Jun 2029
dockerfile: ci/ubuntu-24.04/Dockerfile
<< : *CI_TEMPLATE

ubuntu22_task:
container:
# Ubuntu 22.04 EOL: April 2027
Expand Down
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.50-122 | 2024-05-16 20:56:41 -0700

* CI: Add Ubuntu 24.04 build (Tim Wojtulewicz, Corelight)

0.50-120 | 2024-04-22 12:53:43 -0700

* Always install zeek-archiver, not optionally like adtrace and rst (Christian Kreibich, Corelight)
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. -*- mode: rst; -*-
..
.. Version number is filled in automatically.
.. |version| replace:: 0.50-120
.. |version| replace:: 0.50-122

=======================
Zeek Auxiliary Programs
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.50-120
0.50-122
19 changes: 19 additions & 0 deletions ci/ubuntu-24.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM ubuntu:24.04

# 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 20240510

ENV DEBIAN_FRONTEND="noninteractive" TZ="America/Los_Angeles"

RUN apt-get update && apt-get -y install \
cmake \
git \
g++ \
libpcap-dev \
make \
python3 \
python3-pip \
&& rm -rf /var/lib/apt/lists/*

RUN pip install --break-system-packages btest
2 changes: 1 addition & 1 deletion zeek-archiver/zeek-archiver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <vector>
#include <set>

constexpr auto ZEEK_ARCHIVER_VERSION = "v0.50-120";
constexpr auto ZEEK_ARCHIVER_VERSION = "v0.50-122";

struct Options {
std::string src_dir;
Expand Down

0 comments on commit 400a085

Please sign in to comment.