Skip to content

Commit

Permalink
Merge branch 'topic/christian/ci-updates'
Browse files Browse the repository at this point in the history
* topic/christian/ci-updates:
  CI: add Ubuntu 24.10 and actually test 24.04 :-)
  CI: bump FreeBSD to 13.4 and 14.1, respectively
  CI: drop Fedora 39, add 41
  • Loading branch information
ckreibich committed Dec 6, 2024
2 parents 6e494ed + dc9697d commit fee7757
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 14 deletions.
27 changes: 17 additions & 10 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,20 +81,20 @@ env:
# Linux EOL timelines: https://linuxlifecycle.com/
# Fedora (~13 months): https://fedoraproject.org/wiki/Fedora_Release_Life_Cycle

fedora40_task:
fedora41_task:
container:
# Fedora 40 EOL: Around May 2025
dockerfile: ci/fedora-40/Dockerfile
# Fedora 41 EOL: Around Nov 2025
dockerfile: ci/fedora-41/Dockerfile
<< : *RESOURCES_TEMPLATE
<< : *CI_TEMPLATE
<< : *SKIP_TASK_ON_PR

fedora39_task:
fedora40_task:
container:
# Fedora 39 EOL: Around Nov 2024
dockerfile: ci/fedora-39/Dockerfile
# Fedora 40 EOL: Around May 2025
dockerfile: ci/fedora-40/Dockerfile
<< : *RESOURCES_TEMPLATE
<< : *CI_TEMPLATE
<< : *SKIP_TASK_ON_PR

centosstream9_task:
container:
Expand Down Expand Up @@ -149,10 +149,17 @@ opensuse_tumbleweed_task:
<< : *CI_TEMPLATE
<< : *SKIP_TASK_ON_PR

ubuntu24_10_task:
container:
# Ubuntu 24.10 EOL: 2025-07-30
dockerfile: ci/ubuntu-24.10/Dockerfile
<< : *RESOURCES_TEMPLATE
<< : *CI_TEMPLATE

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

Expand Down Expand Up @@ -201,7 +208,7 @@ macos_ventura_task:
freebsd14_task:
freebsd_instance:
# FreeBSD 14 EOL: Nov 30 2028
image_family: freebsd-14-0
image_family: freebsd-14-1
<< : *FREEBSD_RESOURCES_TEMPLATE

prepare_script: ./ci/freebsd/prepare.sh
Expand All @@ -211,7 +218,7 @@ freebsd14_task:
freebsd13_task:
freebsd_instance:
# FreeBSD 13 EOL: January 31, 2026
image_family: freebsd-13-3
image_family: freebsd-13-4
<< : *FREEBSD_RESOURCES_TEMPLATE

prepare_script: ./ci/freebsd/prepare.sh
Expand Down
8 changes: 8 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
0.61.0-37 | 2024-12-06 00:04:26 -0800

* CI: add Ubuntu 24.10 and actually test 24.04 :-) (Christian Kreibich, Corelight)

* CI: bump FreeBSD to 13.4 and 14.1, respectively (Christian Kreibich, Corelight)

* CI: drop Fedora 39, add 41 (Christian Kreibich, Corelight)

0.61.0-33 | 2024-07-24 13:30:00 -0700

* Format output closer to what clang-format would output (Tim Wojtulewicz, 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-mode -*-
..
.. Version number is filled in automatically.
.. |version| replace:: 0.61.0-33
.. |version| replace:: 0.61.0-37

======
BinPAC
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.61.0-33
0.61.0-37
4 changes: 2 additions & 2 deletions ci/fedora-39/Dockerfile → ci/fedora-41/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM fedora:39
FROM fedora:41

# 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 20231213
ENV DOCKERFILE_VERSION 20241204

RUN dnf -y install \
bison \
Expand Down
18 changes: 18 additions & 0 deletions ci/ubuntu-24.10/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM ubuntu:24.10

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 20241204

RUN apt-get update && apt-get -y install \
bison \
cmake \
flex \
g++ \
gcc \
git \
make \
&& apt autoclean \
&& rm -rf /var/lib/apt/lists/*

0 comments on commit fee7757

Please sign in to comment.