Merge pull request #1900 from dbungert/workflow-noble

workflow: +noble
This commit is contained in:
Dan Bungert 2024-01-29 17:18:06 -07:00 committed by GitHub
commit fb9679abfa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 22 additions and 15 deletions

View File

@ -18,6 +18,7 @@ jobs:
- ubuntu-daily:jammy
- ubuntu-daily:lunar
- ubuntu-daily:mantic
- ubuntu-daily:noble
steps:
- uses: actions/checkout@v4
- name: run
@ -29,8 +30,8 @@ jobs:
fail-fast: false
matrix:
image:
- ubuntu-daily:jammy # match the core snap we're running against
- ubuntu-daily:mantic # latest
- ubuntu-daily:jammy # match the core snap we're running against
- ubuntu-daily:noble # latest
steps:
- uses: actions/checkout@v4
- name: lint

View File

@ -45,7 +45,18 @@ then
done
fi
lxc exec $TESTER -- cloud-init status --wait
if ! lxc exec $TESTER -- cloud-init status --wait; then
ec=$?
case $ec in
0|2)
# 2 is warnings
;;
*)
echo "cloud-init status failed with $ec"
exit $ec
;;
esac
fi
lxc exec $TESTER -- sh -ec "
cd ~/subiquity

View File

@ -53,9 +53,7 @@ class RealnameEditor(StringEditor, WantsToKnowFormField):
return super().valid_char(ch)
class _AsyncValidatedMixin:
"""Provides Editor widgets with async validation capabilities"""
class UsernameEditor(StringEditor, WantsToKnowFormField):
def __init__(self):
self.validation_task = None
self.initial = None
@ -63,6 +61,12 @@ class _AsyncValidatedMixin:
self._validate_async_inner = None
connect_signal(self, "change", self._reset_validation)
self.valid_char_pat = r"[-a-z0-9_]"
self.error_invalid_char = _(
"The only characters permitted in this field are a-z, 0-9, _ and -"
)
super().__init__()
def set_initial_state(self, initial):
self.initial = initial
self.validation_result = initial
@ -86,15 +90,6 @@ class _AsyncValidatedMixin:
self.validation_result = await self._validate_async_inner(value)
self.bff.validate()
class UsernameEditor(StringEditor, _AsyncValidatedMixin, WantsToKnowFormField):
def __init__(self):
self.valid_char_pat = r"[-a-z0-9_]"
self.error_invalid_char = _(
"The only characters permitted in this field are a-z, 0-9, _ and -"
)
super().__init__()
def valid_char(self, ch):
if len(ch) == 1 and not re.match(self.valid_char_pat, ch):
self.bff.in_error = True