all platforms: update Mycelium dependencies #953
ci.yml
on: pull_request
just check
4m 0s
just clippy
4m 7s
rustfmt
28s
docs
3m 33s
netlify_dryrun
4m 1s
Matrix: build-bins
build-x86_64
0s
just test
0s
cargo miri test --package forth3 (host)
0s
all systems go!
0s
Annotations
20 errors and 10 warnings
just check:
platforms/pomelo/src/main.rs#L71
error[E0560]: struct `KernelSettings` has no field named `timer_granularity`
--> platforms/pomelo/src/main.rs:71:9
|
71 | timer_granularity: maitake::time::Duration::from_micros(1),
| ^^^^^^^^^^^^^^^^^ `KernelSettings` does not have this field
|
= note: all struct fields are already assigned
|
just check:
platforms/pomelo/src/main.rs#L71
error[E0560]: struct `KernelSettings` has no field named `timer_granularity`
--> platforms/pomelo/src/main.rs:71:9
|
71 | timer_granularity: maitake::time::Duration::from_micros(1),
| ^^^^^^^^^^^^^^^^^ `KernelSettings` does not have this field
|
= note: all struct fields are already assigned
|
just check:
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~
|
just check:
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~
|
just check:
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~
|
just check:
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~
|
just check:
platforms/pomelo/src/main.rs#L188
error[E0599]: no method named `force_advance` found for reference `&maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:188:31
|
188 | let next_turn = timer.force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
just check:
platforms/pomelo/src/main.rs#L188
error[E0599]: no method named `force_advance` found for reference `&maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:188:31
|
188 | let next_turn = timer.force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
just check:
platforms/pomelo/src/main.rs#L217
error[E0599]: no method named `force_advance` found for reference `&'static maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:217:28
|
217 | kernel.timer().force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
just check:
platforms/pomelo/src/main.rs#L217
error[E0599]: no method named `force_advance` found for reference `&'static maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:217:28
|
217 | kernel.timer().force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
just clippy:
platforms/pomelo/src/main.rs#L71
error[E0560]: struct `kernel::KernelSettings` has no field named `timer_granularity`
--> platforms/pomelo/src/main.rs:71:9
|
71 | timer_granularity: maitake::time::Duration::from_micros(1),
| ^^^^^^^^^^^^^^^^^ `kernel::KernelSettings` does not have this field
|
= note: all struct fields are already assigned
|
just clippy:
platforms/pomelo/src/main.rs#L71
error[E0560]: struct `kernel::KernelSettings` has no field named `timer_granularity`
--> platforms/pomelo/src/main.rs:71:9
|
71 | timer_granularity: maitake::time::Duration::from_micros(1),
| ^^^^^^^^^^^^^^^^^ `kernel::KernelSettings` does not have this field
|
= note: all struct fields are already assigned
|
just clippy:
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `maitake::time::Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* maitake::time::Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
just clippy:
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `maitake::time::Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* maitake::time::Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
just clippy:
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `maitake::time::Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* maitake::time::Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
just clippy:
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `maitake::time::Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* maitake::time::Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
just clippy:
platforms/pomelo/src/main.rs#L188
error[E0599]: no method named `force_advance` found for reference `&maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:188:31
|
188 | let next_turn = timer.force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
just clippy:
platforms/pomelo/src/main.rs#L188
error[E0599]: no method named `force_advance` found for reference `&maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:188:31
|
188 | let next_turn = timer.force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
just clippy:
platforms/pomelo/src/main.rs#L217
error[E0599]: no method named `force_advance` found for reference `&'static maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:217:28
|
217 | kernel.timer().force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
just clippy:
platforms/pomelo/src/main.rs#L217
error[E0599]: no method named `force_advance` found for reference `&'static maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:217:28
|
217 | kernel.timer().force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
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 use a deprecated Node.js version 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 use a deprecated Node.js version 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
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 use a deprecated Node.js version 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 use a deprecated Node.js version 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 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 use a deprecated Node.js version 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/
|