Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Ubuntu Noble 24.04 #48

Merged
merged 3 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/pbuilder-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ jobs:
strategy:
fail-fast: false
matrix:
dist: [xenial, bionic, focal, jammy]
dist: [xenial, bionic, focal, jammy, noble]
arch: [i386, amd64]
exclude:
# No more i386 support since focal
- dist: focal
arch: i386
- dist: jammy
arch: i386
- dist: noble
arch: i386
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions build-package-native/build-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ do
install-project-dependencies
done
cd /package/@REPO@
git config --global --add safe.directory `pwd`
PKG_SHA=`git rev-parse --short HEAD`
PKG_DATE=`date +"%Y%m%d%H%M%S"`
dch -l -$PKG_DATE-$PKG_SHA --distribution `lsb_release -sc` "Automated release"
Expand Down
2 changes: 1 addition & 1 deletion install-dependencies/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ async function run()
if(input.pip)
{
core.startGroup("Install pip dependencies");
await exec.exec('sudo python3 -m pip install ' + input.pip);
await exec.exec('sudo python3 -m pip install ' + input.pip + ' --break-system-packages');
core.endGroup();
}
if(input.github)
Expand Down
2 changes: 1 addition & 1 deletion setup-pbuilder/pbuilderrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ DEBIAN_SUITES=($UNSTABLE_CODENAME $TESTING_CODENAME $STABLE_CODENAME $OLDSTABLE_
"unstable" "testing" "stable" "oldstable")

# List of Ubuntu suites. Update these when needed.
UBUNTU_SUITES=("focal" "bionic" "xenial" "trusty")
UBUNTU_SUITES=("noble" "focal" "bionic" "xenial" "trusty")

# Mirrors to use. Update these to your preferred mirror.
DEBIAN_MIRROR="ftp.us.debian.org"
Expand Down
Loading