Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
76439997
Commit
76439997
authored
Feb 26, 2025
by
Anant Sharma
Committed by
GitHub
Feb 26, 2025
Browse files
ci: fix rust deny workflow (#275)
parent
0db2e6c8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
10 deletions
+5
-10
.github/workflows/pre-merge-rust.yml
.github/workflows/pre-merge-rust.yml
+1
-9
applications/llm/count/Cargo.toml
applications/llm/count/Cargo.toml
+1
-0
deny.toml
deny.toml
+2
-1
launch/tio/Cargo.toml
launch/tio/Cargo.toml
+1
-0
No files found.
.github/workflows/pre-merge-rust.yml
View file @
76439997
...
...
@@ -81,17 +81,9 @@ jobs:
run
:
cargo clippy --no-deps --all-targets -- -D warnings
-
name
:
Install and Run cargo-deny
working-directory
:
${{ matrix.dir }}
# FIXME: Skip this step for failing dirs until license errors fixed
if
:
|
matrix.dir != 'examples/rust' &&
matrix.dir != 'applications/llm/count' &&
matrix.dir != 'launch/tio' &&
matrix.dir != 'lib/llm' &&
matrix.dir != 'lib/bindings/c' &&
matrix.dir != 'lib/bindings/python'
run
:
|
cargo-deny --version || cargo install cargo-deny@0.16.4
cargo-deny check --hide-inclusion-graph licenses
cargo-deny check --hide-inclusion-graph licenses
--config ${{ github.workspace }}/deny.toml
timeout-minutes
:
5
-
name
:
Run Unit Tests
working-directory
:
${{ matrix.dir }}
...
...
applications/llm/count/Cargo.toml
View file @
76439997
...
...
@@ -17,6 +17,7 @@
name
=
"count"
version
=
"0.1.0"
edition
=
"2021"
license
=
"Apache-2.0"
[dependencies]
# local
...
...
lib/runtime/
deny.toml
→
deny.toml
View file @
76439997
...
...
@@ -27,7 +27,8 @@ allow = [
"BSD-3-Clause"
,
"OpenSSL"
,
"Unicode-3.0"
,
"BSL-1.0"
"BSL-1.0"
,
"MPL-2.0"
]
[[licenses.clarify]]
...
...
launch/tio/Cargo.toml
View file @
76439997
...
...
@@ -19,6 +19,7 @@ version = "0.1.0"
edition
=
"2021"
authors
=
["NVIDIA"]
homepage
=
"https://github.com/triton-inference-server/triton_distributed"
license
=
"Apache-2.0"
[features]
mistralrs
=
["triton-distributed-llm/mistralrs"]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment