read arch.list
All checks were successful
Gentoo Utils / check-format (push) Successful in 18s
Gentoo Utils / build-oci-image (push) Successful in 8s
Gentoo Utils / docs (push) Successful in 23s
Gentoo Utils / build (push) Successful in 35s
Gentoo Utils / test (push) Successful in 42s

This commit is contained in:
2025-12-13 05:36:26 +00:00
parent 870800c985
commit a4e73069f4
5 changed files with 60 additions and 1 deletions

View File

@@ -18,6 +18,14 @@ fn main() {
assert_eq!(global_package_mask, vec!["app-editors/vim"]);
assert_eq!(
repo.arch_list()
.iter()
.map(|arch| arch.get())
.collect::<Vec<_>>(),
vec!["amd64", "aarch64"]
);
let profile = repo
.evaluate_profile("gentoo-desktop")
.expect("failed to evaluate profile");