Skip to content

Commit

Permalink
Build package for Ubuntu 24.04
Browse files Browse the repository at this point in the history
and update the install.sh script
  • Loading branch information
mominul committed May 23, 2024
1 parent 7989cc0 commit 8b2eb60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: contains(github.event.head_commit.message, 'deploy+') || contains(github.event.head_commit.message, 'pkg+')
strategy:
matrix:
container: [ "ubuntu:18.04", "ubuntu:20.04", "ubuntu:22.04", "ubuntu:23.04", "debian:11", "debian:12", "fedora:37", "fedora:38", "archlinux:latest" ]
container: [ "ubuntu:18.04", "ubuntu:20.04", "ubuntu:22.04", "ubuntu:24.04", "debian:11", "debian:12", "fedora:37", "fedora:38", "archlinux:latest" ]
# this list should be updated from time to time by consulting these pages:
# https://releases.ubuntu.com/
# https://wiki.debian.org/DebianReleases#Production_Releases
Expand Down
2 changes: 1 addition & 1 deletion tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ case $DISTRO_NAME in
VERSION_ID=$(grep DISTRIB_RELEASE /etc/upstream-release/lsb-release|cut -d= -f2)
fi
case ${VERSION_ID%%.*} in
23|22|21|20|18) VERSION_ID=${VERSION_ID%%.*}.04;UBUNTU_SUPPORTED=1;;
24|23|22|21|20|18) VERSION_ID=${VERSION_ID%%.*}.04;UBUNTU_SUPPORTED=1;;
*) echo "This Ubuntu release \"$VERSION_ID\" is too young or too old for me to handle";exit 1;;
esac
if [[ $UBUNTU_SUPPORTED = 1 ]]; then
Expand Down

0 comments on commit 8b2eb60

Please sign in to comment.