[ci] Update ci image with rust 1.77 and 2024-04-10 (#4077)

cc https://github.com/paritytech/ci_cd/issues/974

---------

Co-authored-by: command-bot <>
Co-authored-by: Bastian Köcher <info@kchr.de>
This commit is contained in:
Alexander Samusev
2024-04-18 11:24:16 +02:00
committed by GitHub
parent b6fab8046e
commit 76719da221
32 changed files with 443 additions and 456 deletions
@@ -9,10 +9,12 @@ note: the struct `RuntimeVersion` is defined here
|
| use sp_version::RuntimeVersion;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
help: consider importing one of these items instead
help: consider importing this struct instead
|
37 | fn version() -> sp_version::RuntimeVersion {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
help: import `RuntimeVersion` directly
|
37 | fn version() -> sp_api::__private::RuntimeVersion {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
37 | fn version() -> sp_version::RuntimeVersion {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -9,10 +9,12 @@ note: the struct `RuntimeVersion` is defined here
|
| use sp_version::RuntimeVersion;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
help: consider importing one of these items instead
help: consider importing this struct instead
|
39 | fn version() -> sp_version::RuntimeVersion {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
help: import `RuntimeVersion` directly
|
39 | fn version() -> sp_api::__private::RuntimeVersion {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
39 | fn version() -> sp_version::RuntimeVersion {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -30,8 +32,8 @@ note: type in trait
|
27 | fn test(data: u64);
| ^^^
= note: expected signature `fn(u64)`
found signature `fn(&u64)`
= note: expected signature `fn(_)`
found signature `fn(&_)`
error[E0308]: mismatched types
--> tests/ui/type_reference_in_impl_runtime_apis_call.rs:33:11