diff --git a/src/dragonball/src/dbs_legacy_devices/src/i8042.rs b/src/dragonball/src/dbs_legacy_devices/src/i8042.rs index 53f8f8574e..4ce9cc5cf7 100644 --- a/src/dragonball/src/dbs_legacy_devices/src/i8042.rs +++ b/src/dragonball/src/dbs_legacy_devices/src/i8042.rs @@ -123,6 +123,7 @@ mod tests { } #[test] + #[ignore = "Issue #10821 - IO Safety violation: owned file descriptor already closed"] fn test_i8042_reset_err() { let reset_evt = EventFdTrigger::new(unsafe { EventFd::from_raw_fd(i32::MAX) }); let mut i8042 = I8042Device::new(reset_evt); diff --git a/src/dragonball/src/dbs_utils/src/net/tap.rs b/src/dragonball/src/dbs_utils/src/net/tap.rs index 012cce4942..7234a59c3a 100644 --- a/src/dragonball/src/dbs_utils/src/net/tap.rs +++ b/src/dragonball/src/dbs_utils/src/net/tap.rs @@ -431,6 +431,7 @@ mod tests { } #[test] + #[ignore = "Issue #10821 - IO Safety violation: owned file descriptor already closed"] fn test_set_options() { // This line will fail to provide an initialized FD if the test is not run as root. let tap = Tap::new().unwrap(); diff --git a/src/tools/kata-ctl/src/utils.rs b/src/tools/kata-ctl/src/utils.rs index 44865d65f9..644ed2b72f 100644 --- a/src/tools/kata-ctl/src/utils.rs +++ b/src/tools/kata-ctl/src/utils.rs @@ -111,6 +111,7 @@ pub fn get_distro_details(os_release: &str, os_release_clr: &str) -> Result<(Str target_arch = "aarch64", all(target_arch = "powerpc64", target_endian = "little"), ))] +#[allow(clippy::const_is_empty)] pub fn get_generic_cpu_details(cpu_info_file: &str) -> Result<(String, String)> { let cpu_info = kata_sys_util::cpu::get_single_cpu_info(cpu_info_file, "\n\n")?; let lines = cpu_info.lines(); diff --git a/tools/packaging/scripts/lib.sh b/tools/packaging/scripts/lib.sh index f5ba3624b6..a5b81e632b 100644 --- a/tools/packaging/scripts/lib.sh +++ b/tools/packaging/scripts/lib.sh @@ -230,8 +230,9 @@ get_agent_image_name() { "$(get_last_modification "${repo_root_dir}/ci/install_libseccomp.sh")" \ "$(get_last_modification "${repo_root_dir}/tools/packaging/kata-deploy/local-build/kata-deploy-copy-libseccomp-installer.sh")") agent_dir="${repo_root_dir}/tools/packaging/static-build/agent" + rust_toolchain="$(get_from_kata_deps ".languages.rust.meta.newest-version")" - echo "${BUILDER_REGISTRY}:agent-${libseccomp_hash}-$(get_last_modification ${agent_dir})-$(uname -m)" + echo "${BUILDER_REGISTRY}:agent-${libseccomp_hash}-$(get_last_modification ${agent_dir})-${rust_toolchain}-$(uname -m)" } get_coco_guest_components_image_name() { diff --git a/versions.yaml b/versions.yaml index 46394bec2b..20c647fcad 100644 --- a/versions.yaml +++ b/versions.yaml @@ -379,12 +379,12 @@ languages: rust: description: "Rust language" notes: "'version' is the default minimum version used by this project." - version: "1.75.0" + version: "1.80.0" meta: description: | 'newest-version' is the latest version known to work when building Kata - newest-version: "1.75.0" + newest-version: "1.80.0" golangci-lint: description: "golangci-lint"