Skip to content

Commit db221ec

Browse files
committed
Do not build openvino-tensor-converter in workspace
1 parent 3400e94 commit db221ec

File tree

5 files changed

+511
-211
lines changed

5 files changed

+511
-211
lines changed

.github/workflows/main.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,21 @@ jobs:
4949
run: git lfs checkout
5050
- name: Build the Docker image
5151
run: docker build . --tag openvino-rs:$(date +%s)
52+
53+
converter:
54+
name: Build and test the openvino-tensor-converter tool
55+
runs-on: ubuntu-latest
56+
defaults:
57+
run:
58+
working-directory: crates/openvino-tensor-converter
59+
steps:
60+
- uses: actions/checkout@v2
61+
with:
62+
submodules: recursive
63+
- name: Install OpenCV
64+
run: sudo apt update && sudo apt install libopencv-dev libopencv-core4.2
65+
- name: Build
66+
run: cargo build -v
67+
- name: test
68+
run: cargo test -v
69+

Cargo.lock

Lines changed: 0 additions & 210 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[workspace]
2-
members = ["crates/openvino", "crates/openvino-sys", "crates/openvino-tensor-converter"]
2+
members = ["crates/openvino", "crates/openvino-sys"]

0 commit comments

Comments
 (0)