diff --git a/craft_providers/lxd/remotes.py b/craft_providers/lxd/remotes.py index 7b10d908..6911a905 100644 --- a/craft_providers/lxd/remotes.py +++ b/craft_providers/lxd/remotes.py @@ -155,12 +155,10 @@ def add_remote(self, lxc: LXC) -> None: remote_address=DAILY_REMOTE_ADDRESS, remote_protocol=ProtocolType.SIMPLESTREAMS, ), - # devel buildd daily image blocked by - # https://github.com/canonical/craft-providers/pull/489 ubuntu.BuilddBaseAlias.DEVEL: RemoteImage( image_name="devel", - remote_name=DAILY_REMOTE_NAME, - remote_address=DAILY_REMOTE_ADDRESS, + remote_name=BUILDD_DAILY_REMOTE_NAME, + remote_address=BUILDD_DAILY_REMOTE_ADDRESS, remote_protocol=ProtocolType.SIMPLESTREAMS, ), centos.CentOSBaseAlias.SEVEN: RemoteImage( diff --git a/craft_providers/multipass/multipass_provider.py b/craft_providers/multipass/multipass_provider.py index 95fd1b85..d5d28522 100644 --- a/craft_providers/multipass/multipass_provider.py +++ b/craft_providers/multipass/multipass_provider.py @@ -102,9 +102,10 @@ def name(self) -> str: ubuntu.BuilddBaseAlias.NOBLE: RemoteImage( remote=Remote.RELEASE, image_name="noble" ), - # XXX: snapcraft:devel image is not working (LP #2007419) - # daily:devel image is not available on macos - ubuntu.BuilddBaseAlias.DEVEL: RemoteImage(remote=Remote.DAILY, image_name="devel"), + # devel images are not available on macos + ubuntu.BuilddBaseAlias.DEVEL: RemoteImage( + remote=Remote.SNAPCRAFT, image_name="devel" + ), }