>>> cargo-chef: Building testing/cargo-chef 0.1.68-r0 (using abuild 3.14.1-r5) started Tue, 14 Jan 2025 14:06:29 +0000 >>> cargo-chef: Validating /home/buildozer/aports/testing/cargo-chef/APKBUILD... >>> cargo-chef: Analyzing dependencies... >>> cargo-chef: Installing for build: build-base cargo cargo-auditable (1/8) Installing libffi (3.4.6-r0) (2/8) Installing libxml2 (2.13.4-r3) (3/8) Installing llvm19-libs (19.1.6-r0) (4/8) Installing scudo-malloc (19.1.6-r0) (5/8) Installing rust (1.84.0-r0) (6/8) Installing cargo (1.84.0-r0) (7/8) Installing cargo-auditable (0.6.6-r0) (8/8) Installing .makedepends-cargo-chef (20250114.140630) Executing busybox-1.37.0-r11.trigger OK: 593 MiB in 117 packages >>> cargo-chef: Cleaning up srcdir >>> cargo-chef: Cleaning up pkgdir >>> cargo-chef: Cleaning up tmpdir >>> cargo-chef: Fetching https://distfiles.alpinelinux.org/distfiles/edge/cargo-chef-0.1.68.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (22) The requested URL returned error: 404 >>> cargo-chef: Fetching cargo-chef-0.1.68.tar.gz::https://github.com/LukeMathWalker/cargo-chef/archive/refs/tags/v0.1.68.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 13159 0 13159 0 0 9882 0 --:--:-- 0:00:01 --:--:-- 9882 100 32668 0 32668 0 0 22019 0 --:--:-- 0:00:01 --:--:-- 125k >>> cargo-chef: Fetching https://distfiles.alpinelinux.org/distfiles/edge/cargo-chef-0.1.68.tar.gz >>> cargo-chef: Checking sha512sums... cargo-chef-0.1.68.tar.gz: OK reduce-size.patch: OK >>> cargo-chef: Unpacking /var/cache/distfiles/cargo-chef-0.1.68.tar.gz... >>> cargo-chef: reduce-size.patch patching file Cargo.toml Updating crates.io index Updating libc v0.2.153 -> v0.2.155 note: pass `--verbose` to see 79 unchanged dependencies behind latest Downloading crates ... Downloaded dissimilar v1.0.7 Downloaded cargo_metadata v0.15.4 Downloaded cargo-manifest v0.14.0 Downloaded expect-test v1.4.1 Downloaded clap v4.5.0 Downloaded tempfile v3.10.0 Downloaded semver v1.0.21 Downloaded toml_edit v0.22.8 Downloaded clap_builder v4.5.0 Downloaded serde_json v1.0.113 Compiling proc-macro2 v1.0.78 Compiling unicode-ident v1.0.12 Compiling serde v1.0.196 Compiling memchr v2.7.1 Compiling regex-syntax v0.8.2 Compiling crossbeam-utils v0.8.19 Compiling thiserror v1.0.56 Compiling hashbrown v0.14.3 Compiling utf8parse v0.2.1 Compiling libc v0.2.155 Compiling log v0.4.20 Compiling equivalent v1.0.1 Compiling autocfg v1.1.0 Compiling anstyle v1.0.6 Compiling winnow v0.6.5 Compiling serde_json v1.0.113 Compiling same-file v1.0.6 Compiling camino v1.1.6 Compiling anstyle-query v1.0.2 Compiling semver v1.0.21 Compiling colorchoice v1.0.0 Compiling strsim v0.11.0 Compiling heck v0.4.1 Compiling clap_lex v0.7.0 Compiling ryu v1.0.16 Compiling anyhow v1.0.79 Compiling itoa v1.0.10 Compiling bitflags v1.3.2 Compiling dissimilar v1.0.7 Compiling once_cell v1.19.0 Compiling humantime v2.1.0 Compiling termcolor v1.4.1 Compiling pathdiff v0.2.1 Compiling anstyle-parse v0.2.3 Compiling walkdir v2.4.0 Compiling expect-test v1.4.1 Compiling anstream v0.6.11 Compiling fs-err v2.11.0 Compiling clap_builder v4.5.0 Compiling aho-corasick v1.1.2 Compiling crossbeam-epoch v0.9.18 Compiling quote v1.0.35 Compiling indexmap v2.2.2 Compiling crossbeam-deque v0.8.5 Compiling syn v2.0.48 Compiling is-terminal v0.4.12 Compiling regex-automata v0.4.5 Compiling serde_derive v1.0.196 Compiling thiserror-impl v1.0.56 Compiling clap_derive v4.5.0 Compiling bstr v1.9.0 Compiling regex v1.10.3 Compiling clap v4.5.0 Compiling env_logger v0.10.2 Compiling globset v0.4.14 Compiling ignore v0.4.22 Compiling globwalk v0.8.1 Compiling serde_spanned v0.6.5 Compiling toml_datetime v0.6.5 Compiling cargo-platform v0.1.7 Compiling toml_edit v0.22.8 Compiling cargo_metadata v0.15.4 Compiling toml v0.8.12 Compiling cargo-manifest v0.14.0 Compiling cargo-chef v0.1.68 (/home/buildozer/aports/testing/cargo-chef/src/cargo-chef-0.1.68) warning: for loop over a `&Option`. This is more readably written as an `if let` statement --> src/skeleton/mod.rs:254:32 | 254 | for lib in &parsed_manifest.lib { | ^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(for_loops_over_fallibles)]` on by default help: to check pattern in a loop use `while let` | 254 | while let Some(lib) = &parsed_manifest.lib { | ~~~~~~~~~~~~~~~ ~~~ help: consider using `if let` to clear intent | 254 | if let Some(lib) = &parsed_manifest.lib { | ~~~~~~~~~~~~ ~~~ warning: `cargo-chef` (lib) generated 1 warning Finished `release` profile [optimized] target(s) in 1m 35s Compiling proc-macro2 v1.0.78 Compiling unicode-ident v1.0.12 Compiling serde v1.0.196 Compiling memchr v2.7.1 Compiling regex-syntax v0.8.2 Compiling autocfg v1.1.0 Compiling libc v0.2.155 Compiling crossbeam-utils v0.8.19 Compiling anstyle v1.0.6 Compiling log v0.4.20 Compiling same-file v1.0.6 Compiling utf8parse v0.2.1 Compiling thiserror v1.0.56 Compiling equivalent v1.0.1 Compiling hashbrown v0.14.3 Compiling colorchoice v1.0.0 Compiling winnow v0.6.5 Compiling camino v1.1.6 Compiling serde_json v1.0.113 Compiling semver v1.0.21 Compiling anstyle-query v1.0.2 Compiling clap_lex v0.7.0 Compiling ryu v1.0.16 Compiling rustix v0.38.31 Compiling strsim v0.11.0 Compiling heck v0.4.1 Compiling itoa v1.0.10 Compiling anyhow v1.0.79 Compiling doc-comment v0.3.3 Compiling bitflags v2.4.2 Compiling predicates-core v1.0.6 Compiling linux-raw-sys v0.4.13 Compiling humantime v2.1.0 Compiling difflib v0.4.0 Compiling dissimilar v1.0.7 Compiling once_cell v1.19.0 Compiling bitflags v1.3.2 Compiling termcolor v1.4.1 Compiling termtree v0.4.1 Compiling normalize-line-endings v0.3.0 Compiling fastrand v2.0.1 Compiling cfg-if v1.0.0 Compiling pathdiff v0.2.1 Compiling anstyle-parse v0.2.3 Compiling walkdir v2.4.0 Compiling anstream v0.6.11 Compiling predicates-tree v1.0.9 Compiling num-traits v0.2.18 Compiling fs-err v2.11.0 Compiling expect-test v1.4.1 Compiling clap_builder v4.5.0 Compiling aho-corasick v1.1.2 Compiling crossbeam-epoch v0.9.18 Compiling quote v1.0.35 Compiling indexmap v2.2.2 Compiling syn v2.0.48 Compiling crossbeam-deque v0.8.5 Compiling float-cmp v0.9.0 Compiling errno v0.3.8 Compiling is-terminal v0.4.12 Compiling wait-timeout v0.2.0 Compiling regex-automata v0.4.5 Compiling serde_derive v1.0.196 Compiling thiserror-impl v1.0.56 Compiling clap_derive v4.5.0 Compiling tempfile v3.10.0 Compiling bstr v1.9.0 Compiling regex v1.10.3 Compiling predicates v3.1.0 Compiling env_logger v0.10.2 Compiling clap v4.5.0 Compiling globset v0.4.14 Compiling assert_cmd v2.0.13 Compiling ignore v0.4.22 Compiling globwalk v0.8.1 Compiling globwalk v0.9.1 Compiling assert_fs v1.1.1 Compiling serde_spanned v0.6.5 Compiling toml_datetime v0.6.5 Compiling cargo-platform v0.1.7 Compiling toml_edit v0.22.8 Compiling cargo_metadata v0.15.4 Compiling toml v0.8.12 Compiling cargo-manifest v0.14.0 Compiling cargo-chef v0.1.68 (/home/buildozer/aports/testing/cargo-chef/src/cargo-chef-0.1.68) warning: for loop over a `&Option`. This is more readably written as an `if let` statement --> src/skeleton/mod.rs:254:32 | 254 | for lib in &parsed_manifest.lib { | ^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(for_loops_over_fallibles)]` on by default help: to check pattern in a loop use `while let` | 254 | while let Some(lib) = &parsed_manifest.lib { | ~~~~~~~~~~~~~~~ ~~~ help: consider using `if let` to clear intent | 254 | if let Some(lib) = &parsed_manifest.lib { | ~~~~~~~~~~~~ ~~~ warning: `cargo-chef` (lib) generated 1 warning warning: `cargo-chef` (lib test) generated 1 warning (1 duplicate) Finished `test` profile [unoptimized + debuginfo] target(s) in 28.93s Running unittests src/lib.rs (target/debug/deps/chef-95cbf047cd159a51) running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Running unittests src/main.rs (target/debug/deps/cargo_chef-8418fd84ad0db679) running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Running tests/recipe.rs (target/debug/deps/recipe-26fb7371ef456a15) running 1 test test test_recipe_is_deterministic ... ok test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.29s Running tests/skeletons.rs (target/debug/deps/skeletons-845fbde31c59aa93) running 21 tests test benches ... ok test workspace_glob_members ... ok test mask_workspace_dependencies ... ok test config_toml ... ok test ignore_vendored_directory ... ok test workspace_version_lock ... ok test tests_no_harness ... ok test non_local_dependency_not_masked ... ok test version ... ok test specify_member_in_workspace ... ok test renamed_local_dependencies ... ok test no_workspace ... ok test examples ... ok test tests ... ok test rust_toolchain_toml ... ok test version_lock ... ok test rust_toolchain ... ok test transitive_workspace_dependency_not_masked ... ok test workspace ... ok test test_auto_bin_ordering ... ok test workspace_bin_nonstandard_dirs ... ok test result: ok. 21 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.46s Doc-tests chef running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s >>> cargo-chef: Entering fakeroot... >>> cargo-chef-doc*: Running split function doc... 'usr/share/doc' -> '/home/buildozer/aports/testing/cargo-chef/pkg/cargo-chef-doc/usr/share/doc' 'usr/share/licenses' -> '/home/buildozer/aports/testing/cargo-chef/pkg/cargo-chef-doc/usr/share/licenses' >>> cargo-chef-doc*: Preparing subpackage cargo-chef-doc... >>> cargo-chef-doc*: Running postcheck for cargo-chef-doc >>> cargo-chef*: Running postcheck for cargo-chef >>> cargo-chef*: Preparing package cargo-chef... >>> cargo-chef*: Stripping binaries >>> cargo-chef-doc*: Scanning shared objects >>> cargo-chef*: Scanning shared objects >>> cargo-chef-doc*: Tracing dependencies... >>> cargo-chef-doc*: Package size: 19.3 KB >>> cargo-chef-doc*: Compressing data... >>> cargo-chef-doc*: Create checksum... >>> cargo-chef-doc*: Create cargo-chef-doc-0.1.68-r0.apk >>> cargo-chef*: Tracing dependencies... so:libc.musl-ppc64le.so.1 so:libgcc_s.so.1 >>> cargo-chef*: Package size: 2.7 MB >>> cargo-chef*: Compressing data... >>> cargo-chef*: Create checksum... >>> cargo-chef*: Create cargo-chef-0.1.68-r0.apk >>> cargo-chef: Build complete at Tue, 14 Jan 2025 14:08:47 +0000 elapsed time 0h 2m 18s >>> cargo-chef: Cleaning up srcdir >>> cargo-chef: Cleaning up pkgdir >>> cargo-chef: Uninstalling dependencies... (1/8) Purging .makedepends-cargo-chef (20250114.140630) (2/8) Purging cargo-auditable (0.6.6-r0) (3/8) Purging cargo (1.84.0-r0) (4/8) Purging rust (1.84.0-r0) (5/8) Purging llvm19-libs (19.1.6-r0) (6/8) Purging scudo-malloc (19.1.6-r0) (7/8) Purging libffi (3.4.6-r0) (8/8) Purging libxml2 (2.13.4-r3) Executing busybox-1.37.0-r11.trigger OK: 278 MiB in 109 packages >>> cargo-chef: Updating the testing/ppc64le repository index... >>> cargo-chef: Signing the index...