Skip to content

Commit

Permalink
feat(buildd): use buildd daily image for devel (#501)
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-cal authored Feb 15, 2024
1 parent 259173d commit b55e395
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 2 additions & 4 deletions craft_providers/lxd/remotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
7 changes: 4 additions & 3 deletions craft_providers/multipass/multipass_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
),
}


Expand Down

0 comments on commit b55e395

Please sign in to comment.