-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'topic/christian/ci-updates'
* 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
Showing
6 changed files
with
47 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.61.0-33 | ||
0.61.0-37 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/* |