Skip to content

start updating to 24w39a + itemcomponent codegen #1901

start updating to 24w39a + itemcomponent codegen

start updating to 24w39a + itemcomponent codegen #1901

Triggered via push September 30, 2024 00:45
Status Failure
Total duration 1m 46s
Artifacts

check.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

9 errors and 12 warnings
no variant or associated item named `ChestBoat` found for enum `azalea_registry::EntityKind` in the current scope: azalea-entity/src/metadata.rs#L11495
error[E0599]: no variant or associated item named `ChestBoat` found for enum `azalea_registry::EntityKind` in the current scope --> azalea-entity/src/metadata.rs:11495:38 | 11495 | azalea_registry::EntityKind::ChestBoat => { | ^^^^^^^^^ variant or associated item not found in `EntityKind` | help: there is a variant with a similar name | 11495 | azalea_registry::EntityKind::CherryBoat => { | ~~~~~~~~~~
no variant or associated item named `Boat` found for enum `azalea_registry::EntityKind` in the current scope: azalea-entity/src/metadata.rs#L11474
error[E0599]: no variant or associated item named `Boat` found for enum `azalea_registry::EntityKind` in the current scope --> azalea-entity/src/metadata.rs:11474:38 | 11474 | azalea_registry::EntityKind::Boat => { | ^^^^ variant or associated item not found in `EntityKind` | help: there is a variant with a similar name | 11474 | azalea_registry::EntityKind::Bat => { | ~~~
no variant or associated item named `ChestBoat` found for enum `azalea_registry::EntityKind` in the current scope: azalea-entity/src/metadata.rs#L10870
error[E0599]: no variant or associated item named `ChestBoat` found for enum `azalea_registry::EntityKind` in the current scope --> azalea-entity/src/metadata.rs:10870:38 | 10870 | azalea_registry::EntityKind::ChestBoat => { | ^^^^^^^^^ variant or associated item not found in `EntityKind` | help: there is a variant with a similar name | 10870 | azalea_registry::EntityKind::CherryBoat => { | ~~~~~~~~~~
no variant or associated item named `Boat` found for enum `azalea_registry::EntityKind` in the current scope: azalea-entity/src/metadata.rs#L10835
error[E0599]: no variant or associated item named `Boat` found for enum `azalea_registry::EntityKind` in the current scope --> azalea-entity/src/metadata.rs:10835:38 | 10835 | azalea_registry::EntityKind::Boat => { | ^^^^ variant or associated item not found in `EntityKind` | help: there is a variant with a similar name | 10835 | azalea_registry::EntityKind::Bat => { | ~~~
clippy_check
Clippy had exited with the 101 exit code
no variant or associated item named `ChestBoat` found for enum `azalea_registry::EntityKind` in the current scope: azalea-entity/src/metadata.rs#L11495
error[E0599]: no variant or associated item named `ChestBoat` found for enum `azalea_registry::EntityKind` in the current scope --> azalea-entity/src/metadata.rs:11495:38 | 11495 | azalea_registry::EntityKind::ChestBoat => { | ^^^^^^^^^ variant or associated item not found in `EntityKind` | help: there is a variant with a similar name | 11495 | azalea_registry::EntityKind::CherryBoat => { | ~~~~~~~~~~
no variant or associated item named `Boat` found for enum `azalea_registry::EntityKind` in the current scope: azalea-entity/src/metadata.rs#L11474
error[E0599]: no variant or associated item named `Boat` found for enum `azalea_registry::EntityKind` in the current scope --> azalea-entity/src/metadata.rs:11474:38 | 11474 | azalea_registry::EntityKind::Boat => { | ^^^^ variant or associated item not found in `EntityKind` | help: there is a variant with a similar name | 11474 | azalea_registry::EntityKind::Bat => { | ~~~
no variant or associated item named `ChestBoat` found for enum `azalea_registry::EntityKind` in the current scope: azalea-entity/src/metadata.rs#L10870
error[E0599]: no variant or associated item named `ChestBoat` found for enum `azalea_registry::EntityKind` in the current scope --> azalea-entity/src/metadata.rs:10870:38 | 10870 | azalea_registry::EntityKind::ChestBoat => { | ^^^^^^^^^ variant or associated item not found in `EntityKind` | help: there is a variant with a similar name | 10870 | azalea_registry::EntityKind::CherryBoat => { | ~~~~~~~~~~
no variant or associated item named `Boat` found for enum `azalea_registry::EntityKind` in the current scope: azalea-entity/src/metadata.rs#L10835
error[E0599]: no variant or associated item named `Boat` found for enum `azalea_registry::EntityKind` in the current scope --> azalea-entity/src/metadata.rs:10835:38 | 10835 | azalea_registry::EntityKind::Boat => { | ^^^^ variant or associated item not found in `EntityKind` | help: there is a variant with a similar name | 10835 | azalea_registry::EntityKind::Bat => { | ~~~
first doc comment paragraph is too long: azalea-world/src/chunk_storage.rs#L44
warning: first doc comment paragraph is too long --> azalea-world/src/chunk_storage.rs:44:1 | 44 | / /// A single chunk in a world (16*?*16 blocks). This only contains the blocks 45 | | /// and biomes. You can derive the height of the chunk from the number of 46 | | /// sections, but you need a [`ChunkStorage`] to get the minimum Y 47 | | /// coordinate. | |_ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph = note: `#[warn(clippy::too_long_first_doc_paragraph)]` on by default
manually reimplementing `div_ceil`: azalea-world/src/bit_storage.rs#L122
warning: manually reimplementing `div_ceil` --> azalea-world/src/bit_storage.rs:122:33 | 122 | let calculated_length = (size + values_per_long - 1) / values_per_long; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.div_ceil()`: `size.div_ceil(values_per_long)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_div_ceil = note: `#[warn(clippy::manual_div_ceil)]` on by default
first doc comment paragraph is too long: azalea-auth/src/sessionserver.rs#L125
warning: first doc comment paragraph is too long --> azalea-auth/src/sessionserver.rs:125:1 | 125 | / /// Ask Mojang's servers if the player joining is authenticated. 126 | | /// Included in the reply is the player's skin and cape. 127 | | /// The IP field is optional and equivalent to enabling 128 | | /// 'prevent-proxy-connections' in server.properties | |_ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph = note: `#[warn(clippy::too_long_first_doc_paragraph)]` on by default help: add an empty line | 125 ~ /// Ask Mojang's servers if the player joining is authenticated. 126 + /// |
clippy_check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
clippy_check
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3, actions-rs/toolchain@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
first doc comment paragraph is too long: azalea-world/src/chunk_storage.rs#L44
warning: first doc comment paragraph is too long --> azalea-world/src/chunk_storage.rs:44:1 | 44 | / /// A single chunk in a world (16*?*16 blocks). This only contains the blocks 45 | | /// and biomes. You can derive the height of the chunk from the number of 46 | | /// sections, but you need a [`ChunkStorage`] to get the minimum Y 47 | | /// coordinate. | |_ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph = note: `#[warn(clippy::too_long_first_doc_paragraph)]` on by default
manually reimplementing `div_ceil`: azalea-world/src/bit_storage.rs#L122
warning: manually reimplementing `div_ceil` --> azalea-world/src/bit_storage.rs:122:33 | 122 | let calculated_length = (size + values_per_long - 1) / values_per_long; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.div_ceil()`: `size.div_ceil(values_per_long)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_div_ceil = note: `#[warn(clippy::manual_div_ceil)]` on by default
first doc comment paragraph is too long: azalea-auth/src/sessionserver.rs#L125
warning: first doc comment paragraph is too long --> azalea-auth/src/sessionserver.rs:125:1 | 125 | / /// Ask Mojang's servers if the player joining is authenticated. 126 | | /// Included in the reply is the player's skin and cape. 127 | | /// The IP field is optional and equivalent to enabling 128 | | /// 'prevent-proxy-connections' in server.properties | |_ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph = note: `#[warn(clippy::too_long_first_doc_paragraph)]` on by default help: add an empty line | 125 ~ /// Ask Mojang's servers if the player joining is authenticated. 126 + /// |