Skip to content

Commit

Permalink
Merge pull request #48 from arntanguy/topic/ubuntu-noble
Browse files Browse the repository at this point in the history
Add support for Ubuntu Noble 24.04
  • Loading branch information
arntanguy authored Nov 6, 2024
2 parents 88fe33a + d9f07b3 commit 074168b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
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

0 comments on commit 074168b

Please sign in to comment.