Skip to content

feat: retain cli args when relaunching after update, closes #7402 #371

feat: retain cli args when relaunching after update, closes #7402

feat: retain cli args when relaunching after update, closes #7402 #371

Triggered via pull request August 30, 2023 17:45
Status Success
Total duration 20m 56s
Artifacts

test-lint-bundler.yml

on: pull_request
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

12 errors and 25 warnings
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L3292
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:3292:14 | 3292 | inner: Arc::new(webview), | ^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `WebView` = note: the trait `Sync` is not implemented for `WebView` = note: required for `Arc<WebView>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L1944
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:1944:19 | 1944 | let windows = Arc::new(RefCell::new(HashMap::default())); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `RefCell<HashMap<u64, WindowWrapper>>` = note: the trait `Sync` is not implemented for `RefCell<HashMap<u64, WindowWrapper>>` = note: required for `Arc<RefCell<HashMap<u64, WindowWrapper>>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync = note: `-D clippy::arc-with-non-send-sync` implied by `-D warnings`
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L3292
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:3292:14 | 3292 | inner: Arc::new(webview), | ^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `WebView` = note: the trait `Sync` is not implemented for `WebView` = note: required for `Arc<WebView>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L2657
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:2657:24 | 2657 | items: Arc::new(Mutex::new(items)), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `Mutex<HashMap<u16, CustomMenuItem>>` = note: the trait `Sync` is not implemented for `Mutex<HashMap<u16, CustomMenuItem>>` = note: required for `Arc<Mutex<HashMap<u16, CustomMenuItem>>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L2656
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:2656:28 | 2656 | listeners: Arc::new(Mutex::new(listeners)), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `Mutex<Vec<Arc<Box<dyn Fn(&SystemTrayEvent) + Send>>>>` = note: the trait `Sync` is not implemented for `Mutex<Vec<Arc<Box<dyn Fn(&SystemTrayEvent) + Send>>>>` = note: required for `Arc<Mutex<Vec<Arc<Box<dyn Fn(&SystemTrayEvent) + Send>>>>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L2655
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:2655:23 | 2655 | tray: Arc::new(Mutex::new(Some(tray))), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `Mutex<Option<SystemTray>>` = note: the trait `Sync` is not implemented for `Mutex<Option<SystemTray>>` = note: required for `Arc<Mutex<Option<SystemTray>>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L2648
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:2648:26 | 2648 | listeners.push(Arc::new(l)); | ^^^^^^^^^^^ | = note: the trait `Sync` is not implemented for `Box<dyn Fn(&SystemTrayEvent) + Send>` = note: required for `Arc<Box<dyn Fn(&SystemTrayEvent) + Send>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L2106
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:2106:18 | 2106 | items: Arc::new(Mutex::new(items)), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `Mutex<HashMap<u16, CustomMenuItem>>` = note: the trait `Sync` is not implemented for `Mutex<HashMap<u16, CustomMenuItem>>` = note: required for `Arc<Mutex<HashMap<u16, CustomMenuItem>>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L2105
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:2105:22 | 2105 | listeners: Arc::new(Mutex::new(listeners)), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `Mutex<Vec<Arc<Box<dyn Fn(&SystemTrayEvent) + Send>>>>` = note: the trait `Sync` is not implemented for `Mutex<Vec<Arc<Box<dyn Fn(&SystemTrayEvent) + Send>>>>` = note: required for `Arc<Mutex<Vec<Arc<Box<dyn Fn(&SystemTrayEvent) + Send>>>>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L2104
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:2104:17 | 2104 | tray: Arc::new(Mutex::new(Some(tray))), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `Mutex<Option<SystemTray>>` = note: the trait `Sync` is not implemented for `Mutex<Option<SystemTray>>` = note: required for `Arc<Mutex<Option<SystemTray>>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L2091
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:2091:22 | 2091 | listeners.push(Arc::new(l)); | ^^^^^^^^^^^ | = note: the trait `Sync` is not implemented for `Box<dyn Fn(&SystemTrayEvent) + Send>` = note: required for `Arc<Box<dyn Fn(&SystemTrayEvent) + Send>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
usage of an `Arc` that is not `Send` or `Sync`: core/tauri-runtime-wry/src/lib.rs#L1944
error: usage of an `Arc` that is not `Send` or `Sync` --> core/tauri-runtime-wry/src/lib.rs:1944:19 | 1944 | let windows = Arc::new(RefCell::new(HashMap::default())); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: the trait `Send` is not implemented for `RefCell<HashMap<u64, WindowWrapper>>` = note: the trait `Sync` is not implemented for `RefCell<HashMap<u64, WindowWrapper>>` = note: required for `Arc<RefCell<HashMap<u64, WindowWrapper>>>` to implement `Send` and `Sync` = help: consider using an `Rc` instead or wrapping the inner type with a `Mutex` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync = note: `-D clippy::arc-with-non-send-sync` implied by `-D warnings`
fmt
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
fmt
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/
fmt
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/
fmt
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/
fmt
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
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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
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
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
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
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/
test (macos-latest)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
test (macos-latest)
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/
test (macos-latest)
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/
test (macos-latest)
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/
test (macos-latest)
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/
test (ubuntu-latest)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
test (ubuntu-latest)
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/
test (ubuntu-latest)
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/
test (ubuntu-latest)
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/
test (ubuntu-latest)
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/
test (windows-latest)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
test (windows-latest)
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/
test (windows-latest)
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/
test (windows-latest)
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/
test (windows-latest)
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/