-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update distro-info.sh to include new Ubuntu 24.04, Debian Trixie, and…
… Fedora 40. (#133)
- Loading branch information
Showing
8 changed files
with
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ FROM debian:bookworm | |
|
||
COPY install-apt-deps.sh . | ||
RUN ./install-apt-deps.sh | ||
WORKDIR /src | ||
WORKDIR /src |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ FROM i386/debian:bookworm | |
|
||
COPY install-apt-deps.sh . | ||
RUN ./install-apt-deps.sh | ||
WORKDIR /src | ||
WORKDIR /src |
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,5 +1,6 @@ | ||
FROM fedora:37 | ||
# Leading edge release. | ||
FROM fedora:latest | ||
|
||
COPY install-rpm-deps.sh . | ||
RUN ./install-rpm-deps.sh | ||
WORKDIR /src | ||
WORKDIR /src |
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,5 +1,8 @@ | ||
FROM ubuntu:kinetic | ||
# TODO: update this to 24.04 once it's released. Ideally this should _always_ | ||
# be the latest LTS release, but an interim release is used here because Jammy | ||
# doesn't have the minimum version of GNOME necessary to build the extension. | ||
FROM ubuntu:mantic | ||
|
||
COPY install-apt-deps.sh . | ||
RUN ./install-apt-deps.sh | ||
WORKDIR /src | ||
WORKDIR /src |
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,5 +1,5 @@ | ||
#!/bin/sh | ||
# This file also gets execfile'd by python so don't do anything here besides set variables. | ||
UBUNTU_CODENAMES="kinetic lunar mantic" | ||
DEBIAN_CODENAMES="bookworm sid" | ||
FEDORA_CODENAMES="37 38 39" | ||
UBUNTU_CODENAMES="kinetic lunar mantic noble" | ||
DEBIAN_CODENAMES="bookworm trixie sid" | ||
FEDORA_CODENAMES="37 38 39 40" |
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