-
Notifications
You must be signed in to change notification settings - Fork 25
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: remove openSUSE Leap 15.4, about to EOL CI: drop macOS Monterey, add Sonoma CI: add Ubuntu 23.10 CI: FreeBSD 14 is out now, 13 is at 13.2, and 12 is about to EOL. CI: distro EOL comment tweaks CI: drop Fedora 37, add Fedora 39
- Loading branch information
Showing
6 changed files
with
51 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.8.0-dev.11 | ||
2.8.0-dev.18 |
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 was deleted.
Oops, something went wrong.
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:23.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 20231213 | ||
|
||
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/* |