uncommented test retry #440
ci.yml
on: push
Bitrot check
8m 13s
Clippy (MSRV)
7m 0s
Clippy (beta)
13s
Code coverage
3m 45s
Intra-doc links
8m 31s
Rustfmt
6s
Matrix: build-latest
Matrix: test
Annotations
12 errors
Rustfmt
Process completed with exit code 1.
|
Clippy (beta)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 1
|
Code coverage
Process completed with exit code 1.
|
large size difference between variants:
zaino-fetch/src/jsonrpc/response.rs#L533
error: large size difference between variants
--> zaino-fetch/src/jsonrpc/response.rs:533:1
|
533 | / pub enum GetBlockResponse {
534 | | /// The request block, hex-encoded.
535 | | Raw(#[serde(with = "hex")] SerializedBlock),
| | ------------------------------------------- the second-largest variant contains at least 24 bytes
536 | | /// The block object.
537 | |/ Object {
538 | || /// The hash of the requested block.
539 | || hash: GetBlockHash,
... ||
623 | || next_block_hash: Option<GetBlockHash>,
624 | || },
| ||_____- the largest variant contains at least 1744 bytes
625 | | }
| |__^ the entire enum is at least 1744 bytes
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
= note: `-D clippy::large-enum-variant` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::large_enum_variant)]`
help: consider boxing the large fields to reduce the total size of the enum
|
566 ~ block_commitments: Box<Option<[u8; 32]>>,
567 |
...
570 | #[serde(default, skip_serializing_if = "Option::is_none")]
571 ~ final_sapling_root: Box<Option<[u8; 32]>>,
572 |
...
575 | #[serde(default, skip_serializing_if = "Option::is_none")]
576 ~ final_orchard_root: Box<Option<[u8; 32]>>,
577 |
...
584 | #[serde(default, skip_serializing_if = "Option::is_none")]
585 ~ nonce: Box<Option<[u8; 32]>>,
586 |
...
590 | #[serde(default, skip_serializing_if = "Option::is_none")]
591 ~ solution: Box<Option<Solution>>,
592 |
...
614 | )]
615 ~ previous_block_hash: Box<Option<GetBlockHash>>,
616 |
...
622 | )]
623 ~ next_block_hash: Box<Option<GetBlockHash>>,
|
|
large size difference between variants:
zaino-fetch/src/jsonrpc/response.rs#L533
error: large size difference between variants
--> zaino-fetch/src/jsonrpc/response.rs:533:1
|
533 | / pub enum GetBlockResponse {
534 | | /// The request block, hex-encoded.
535 | | Raw(#[serde(with = "hex")] SerializedBlock),
| | ------------------------------------------- the second-largest variant contains at least 24 bytes
536 | | /// The block object.
537 | |/ Object {
538 | || /// The hash of the requested block.
539 | || hash: GetBlockHash,
... ||
623 | || next_block_hash: Option<GetBlockHash>,
624 | || },
| ||_____- the largest variant contains at least 1744 bytes
625 | | }
| |__^ the entire enum is at least 1744 bytes
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
= note: `-D clippy::large-enum-variant` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::large_enum_variant)]`
help: consider boxing the large fields to reduce the total size of the enum
|
566 ~ block_commitments: Box<Option<[u8; 32]>>,
567 |
...
570 | #[serde(default, skip_serializing_if = "Option::is_none")]
571 ~ final_sapling_root: Box<Option<[u8; 32]>>,
572 |
...
575 | #[serde(default, skip_serializing_if = "Option::is_none")]
576 ~ final_orchard_root: Box<Option<[u8; 32]>>,
577 |
...
584 | #[serde(default, skip_serializing_if = "Option::is_none")]
585 ~ nonce: Box<Option<[u8; 32]>>,
586 |
...
590 | #[serde(default, skip_serializing_if = "Option::is_none")]
591 ~ solution: Box<Option<Solution>>,
592 |
...
614 | )]
615 ~ previous_block_hash: Box<Option<GetBlockHash>>,
616 |
...
622 | )]
623 ~ next_block_hash: Box<Option<GetBlockHash>>,
|
|
Clippy (MSRV)
Clippy had exited with the 101 exit code
|
Latest build on windows-latest
Process completed with exit code 1.
|
Test on ubuntu-latest
Process completed with exit code 101.
|
Test on windows-latest
The job was canceled because "ubuntu-latest" failed.
|
Test on windows-latest
The operation was canceled.
|
Test on macOS-latest
The job was canceled because "ubuntu-latest" failed.
|
Test on macOS-latest
The operation was canceled.
|