Skip to content

Commit

Permalink
CI: add Ubuntu 24.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ckreibich committed Dec 4, 2024
1 parent 7543528 commit ad5ef87
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,14 @@ opensuse_tumbleweed_task:
<< : *CI_TEMPLATE
<< : *UNIX_ENV

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

ubuntu24_task:
container:
# Ubuntu 24.04 EOL: Jun 2029
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 \
cmake \
g++ \
git \
libssl-dev \
make \
python3 \
python3-dev \
&& apt autoclean \
&& rm -rf /var/lib/apt/lists/*

0 comments on commit ad5ef87

Please sign in to comment.