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

images: Move ubuntu-stable to noble devel series #6048

Merged
merged 3 commits into from
Mar 13, 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
3 changes: 2 additions & 1 deletion images/scripts/debian.setup
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ Pin-Priority: 10
EOF
fi

if [ "${IMAGE#ubuntu}" != "$IMAGE" ]; then
# HACK while ubuntu-stable == current noble devel: don't enable -proposed, that's broken by definition
if [ "${IMAGE#ubuntu}" != "$IMAGE" ] && [ "$RELEASE" != "noble" ]; then
echo "deb http://archive.ubuntu.com/ubuntu ${RELEASE}-proposed main restricted universe" > /etc/apt/sources.list.d/proposed.list
cat <<EOF > /etc/apt/preferences.d/all-proposed
Package: *
Expand Down
5 changes: 5 additions & 0 deletions images/scripts/ubuntu-stable.bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,9 @@ fi
# release name is the last part of the URL
rel=${rel##*/}

# noble will become 24.04 LTS, so let's test it before the release so that we can fix issues in time
if [ "$rel" = "mantic" ]; then
rel="noble"
fi

exec $(dirname $0)/lib/cloudimage.bootstrap "$1" "https://cloud-images.ubuntu.com/daily/server/$rel/current/$rel-server-cloudimg-amd64.img"
2 changes: 1 addition & 1 deletion images/ubuntu-stable
4 changes: 4 additions & 0 deletions machine/machine_core/machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,10 @@ def allowed_messages(self):
)
allowed.append("Error importing insights.client.*newest.egg: No module named 'insights'")

if self.image == "ubuntu-stable":
# https://launchpad.net/bugs/2056739
allowed.append('audit.* apparmor="DENIED".* name="/etc/gnutls/config".*')

return allowed

def get_admin_group(self):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Traceback (most recent call last):
File "*", line *, in testEvents
*
testlib.Error: timeout
wait_js_cond(ph_is_present(".cockpit-log-message:contains('Created slice cockpittest.slice.')")): Uncaught (in promise) Error: condition did not become true
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Traceback (most recent call last):
File "*", line *, in testRebootAndTime
*
*"January 1, 2037"*"check-journal"*"BEFORE BOOT"* condition did not become true
1 change: 1 addition & 0 deletions naughty/ubuntu-stable/5364-apparmor-sysfs-zoned
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
apparmor="DENIED" operation="open" class="file" profile="libvirt*" name="/sys/*/queue/zoned" * comm="qemu-system-x86" requested_mask="r" denied_mask="r"
7 changes: 7 additions & 0 deletions naughty/ubuntu-stable/5419-w-segfault
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
warning: Unexpected error when getting logged in accounts*
*
Traceback (most recent call last):
File "test/verify/check-users", line *, in testUserPasswords
b.wait_visible("#account-groups-helper")
*
testlib.Error: timeout
8 changes: 8 additions & 0 deletions naughty/ubuntu-stable/5419-w-segfault-2
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
warning: Unexpected error when getting logged in accounts*
*
Traceback (most recent call last):
File "test/verify/check-users", line *, in testGroups
selectGroupFromMenu("testgroup0", enabled=True)
File "test/verify/check-users", line *, in selectGroupFromMenu
*
testlib.Error: timeout
6 changes: 6 additions & 0 deletions naughty/ubuntu-stable/5874-lvconvert-hangs-in-kernel
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[<0>] md_stop+*
*
[<0>] dev_suspend+*
*
File "check-storage-lvm2", line *, in testRaidRepair
self.dialog_wait_close() # wait for repair to finish
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
apparmor="DENIED" operation="open" class="file" profile="rsyslogd" name="/run/systemd/sessions/" * requested_mask="r" denied_mask="r"
Loading