Skip to content

build.rs: fix println #862

build.rs: fix println

build.rs: fix println #862

Triggered via pull request February 21, 2024 00:45
@WenzelWenzel
synchronize #244
fix/ci
Status Success
Total duration 1m 46s
Artifacts

doc.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

2 errors and 2 warnings
single-character string constant used as pattern: src/driver/memflow.rs#L57
error: single-character string constant used as pattern --> src/driver/memflow.rs:57:33 | 57 | .split_once("=") | ^^^ help: try using a `char` instead: `'='` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern = note: `-D clippy::single-char-pattern` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::single_char_pattern)]`
deref which would be done by auto-deref: src/driver/memflow.rs#L45
error: deref which would be done by auto-deref --> src/driver/memflow.rs:45:62 | 45 | create_connector_args.insert("name", &*init_params.common.unwrap().vm_name); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&init_params.common.unwrap().vm_name` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref = note: `-D clippy::explicit-auto-deref` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::explicit_auto_deref)]`
book
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
book
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/cache@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/