Skip to content

Commit 510f50b

Browse files
authored
ci: check against v2023.2 (#83)
* ci: check against 2023.2 version * clippy: ignore bindgen-generated function documentation
1 parent 845f040 commit 510f50b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# found ("dyld: Library not loaded; '@rpath/libopenvino.2310.dylib'"). See
2121
# https://github.com/abrown/openvino-rs/actions/runs/6423141936/job/17441022932#step:7:154
2222
os: [ubuntu-20.04, ubuntu-22.04, windows-latest]
23-
version: [2022.3.0, 2023.0.1, 2023.1.0]
23+
version: [2022.3.0, 2023.1.0, 2023.2.0]
2424
apt: [false]
2525
# We also spot-check that things work when installing from APT by adding to the matrix: see
2626
# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#expanding-or-adding-matrix-configurations

crates/openvino-sys/src/linking/runtime.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ macro_rules! link {
106106
// on the local thread and into the loaded shared library implementation.
107107
$(
108108
$(#[doc=$doc])* $(#[cfg($cfg)])*
109+
#[allow(clippy::missing_safety_doc)] // These are bindgen-generated functions.
109110
pub unsafe fn $name($($pname: $pty), *) $(-> $ret)* {
110111
let f = with_library(|l| {
111112
l.functions.$name.expect(concat!(

0 commit comments

Comments
 (0)