mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 05:28:20 +00:00
Merge remote-tracking branch 'origin/topic/timw/remove-ubuntu-22-10'
* origin/topic/timw/remove-ubuntu-22-10: CI: Add ubuntu 23.04 build CI: Remove EOL ubuntu 22.10 build
This commit is contained in:
commit
619113f674
4 changed files with 15 additions and 12 deletions
|
@ -260,10 +260,10 @@ opensuse_tumbleweed_task:
|
|||
<< : *CI_TEMPLATE
|
||||
# << : *SKIP_TASK_ON_PR
|
||||
|
||||
ubuntu2210_task:
|
||||
ubuntu23_task:
|
||||
container:
|
||||
# Ubuntu 22.10 EOL: July 2023
|
||||
dockerfile: ci/ubuntu-22.10/Dockerfile
|
||||
# Ubuntu 23.04 EOL: January 2024
|
||||
dockerfile: ci/ubuntu-23.04/Dockerfile
|
||||
<< : *RESOURCES_TEMPLATE
|
||||
<< : *CI_TEMPLATE
|
||||
|
||||
|
|
6
CHANGES
6
CHANGES
|
@ -1,3 +1,9 @@
|
|||
6.1.0-dev.349 | 2023-08-29 09:11:21 -0700
|
||||
|
||||
* CI: Add ubuntu 23.04 build (Tim Wojtulewicz, Corelight)
|
||||
|
||||
* CI: Remove EOL ubuntu 22.10 build (Tim Wojtulewicz, Corelight)
|
||||
|
||||
6.1.0-dev.346 | 2023-08-29 09:39:10 +0200
|
||||
|
||||
* pre-commit: autoupdate (Arne Welzel, Corelight)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
6.1.0-dev.346
|
||||
6.1.0-dev.349
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
FROM ubuntu:22.10
|
||||
FROM ubuntu:23.04
|
||||
|
||||
ENV DEBIAN_FRONTEND="noninteractive" TZ="America/Los_Angeles"
|
||||
|
||||
# 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 20230801
|
||||
ENV DOCKERFILE_VERSION 20230828
|
||||
|
||||
RUN apt-get update && apt-get -y install \
|
||||
bc \
|
||||
|
@ -17,17 +17,15 @@ RUN apt-get update && apt-get -y install \
|
|||
g++ \
|
||||
gcc \
|
||||
git \
|
||||
lcov \
|
||||
libkrb5-dev \
|
||||
libmaxminddb-dev \
|
||||
libnode-dev \
|
||||
libpcap-dev \
|
||||
libssl-dev \
|
||||
libuv1-dev \
|
||||
make \
|
||||
python3 \
|
||||
python3-dev \
|
||||
python3-pip \
|
||||
python3-websockets \
|
||||
ruby \
|
||||
sqlite3 \
|
||||
swig \
|
||||
|
@ -37,5 +35,4 @@ RUN apt-get update && apt-get -y install \
|
|||
&& apt autoclean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN pip3 install websockets junit2html
|
||||
RUN gem install coveralls-lcov
|
||||
RUN pip3 install --break-system-packages junit2html
|
Loading…
Add table
Add a link
Reference in a new issue