update toolchain to nightly-2024-07-30 #873
ci.yml
on: pull_request
just check
2m 52s
just clippy
3m 48s
rustfmt
21s
docs
2m 43s
netlify_dryrun
2m 49s
just test
0s
cargo miri test --package forth3 (host)
0s
Matrix: build-bins
Annotations
9 errors and 13 warnings
just check:
platforms/x86_64/core/src/bin/bootloader/main.rs#L119
error[E0308]: mismatched types
--> platforms/x86_64/core/src/bin/bootloader/main.rs:119:12
|
119 | if let Some(message) = panic.message() {
| ^^^^^^^^^^^^^ --------------- this expression has type `PanicMessage<'_>`
| |
| expected `PanicMessage<'_>`, found `Option<_>`
|
= note: expected struct `PanicMessage<'_>`
found enum `Option<_>`
|
just check:
platforms/x86_64/core/src/bin/bootloader/main.rs#L119
error[E0308]: mismatched types
--> platforms/x86_64/core/src/bin/bootloader/main.rs:119:12
|
119 | if let Some(message) = panic.message() {
| ^^^^^^^^^^^^^ --------------- this expression has type `PanicMessage<'_>`
| |
| expected `PanicMessage<'_>`, found `Option<_>`
|
= note: expected struct `PanicMessage<'_>`
found enum `Option<_>`
|
just check
Process completed with exit code 1.
|
just clippy:
platforms/x86_64/core/src/bin/bootloader/main.rs#L3
error: the feature `panic_info_message` has been stable since 1.81.0 and no longer requires an attribute to enable
--> platforms/x86_64/core/src/bin/bootloader/main.rs:3:12
|
3 | #![feature(panic_info_message)]
| ^^^^^^^^^^^^^^^^^^
|
= note: `-D stable-features` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(stable_features)]`
|
just clippy:
platforms/x86_64/core/src/bin/bootloader/main.rs#L119
error[E0308]: mismatched types
--> platforms/x86_64/core/src/bin/bootloader/main.rs:119:12
|
119 | if let Some(message) = panic.message() {
| ^^^^^^^^^^^^^ --------------- this expression has type `core::panic::PanicMessage<'_>`
| |
| expected `PanicMessage<'_>`, found `Option<_>`
|
= note: expected struct `core::panic::PanicMessage<'_>`
found enum `core::option::Option<_>`
|
just clippy:
platforms/x86_64/core/src/bin/bootloader/main.rs#L119
error[E0308]: mismatched types
--> platforms/x86_64/core/src/bin/bootloader/main.rs:119:12
|
119 | if let Some(message) = panic.message() {
| ^^^^^^^^^^^^^ --------------- this expression has type `core::panic::PanicMessage<'_>`
| |
| expected `PanicMessage<'_>`, found `Option<_>`
|
= note: expected struct `core::panic::PanicMessage<'_>`
found enum `core::option::Option<_>`
|
just clippy:
platforms/x86_64/core/src/bin/bootloader/main.rs#L121
error: use of deprecated method `core::panic::PanicInfo::<'a>::payload`: this never returns anything useful
--> platforms/x86_64/core/src/bin/bootloader/main.rs:121:41
|
121 | } else if let Some(payload) = panic.payload().downcast_ref::<&'static str>() {
| ^^^^^^^
|
= note: `-D deprecated` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(deprecated)]`
|
just clippy:
platforms/x86_64/core/src/bin/bootloader/main.rs#L123
error: use of deprecated method `core::panic::PanicInfo::<'a>::payload`: this never returns anything useful
--> platforms/x86_64/core/src/bin/bootloader/main.rs:123:41
|
123 | } else if let Some(payload) = panic.payload().downcast_ref::<alloc::string::String>() {
| ^^^^^^^
|
just clippy
Process completed with exit code 1.
|
rustfmt
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
rustfmt
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v2. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
docs
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
docs
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v2, extractions/setup-just@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
netlify_dryrun
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
netlify_dryrun
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v2. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
just check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
just check
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v2, extractions/setup-just@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
just check:
platforms/x86_64/core/src/bin/bootloader/main.rs#L3
warning: the feature `panic_info_message` has been stable since 1.81.0 and no longer requires an attribute to enable
--> platforms/x86_64/core/src/bin/bootloader/main.rs:3:12
|
3 | #![feature(panic_info_message)]
| ^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(stable_features)]` on by default
|
just check:
platforms/x86_64/core/src/bin/bootloader/main.rs#L121
warning: use of deprecated method `core::panic::PanicInfo::<'a>::payload`: this never returns anything useful
--> platforms/x86_64/core/src/bin/bootloader/main.rs:121:41
|
121 | } else if let Some(payload) = panic.payload().downcast_ref::<&'static str>() {
| ^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
just check:
platforms/x86_64/core/src/bin/bootloader/main.rs#L123
warning: use of deprecated method `core::panic::PanicInfo::<'a>::payload`: this never returns anything useful
--> platforms/x86_64/core/src/bin/bootloader/main.rs:123:41
|
123 | } else if let Some(payload) = panic.payload().downcast_ref::<alloc::string::String>() {
| ^^^^^^^
|
just clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
just clippy
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v2, extractions/setup-just@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|