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

feat(buildd): use buildd daily image for devel #501

Merged
merged 3 commits into from
Feb 15, 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
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
Loading