Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/ci-path-filters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ shared:
- 'crates/core/src/**'
- 'crates/types/Cargo.toml'
- 'crates/types/src/**'
- 'crates/worker-proto/Cargo.toml'
- 'crates/worker-proto/build.rs'
- 'crates/worker-proto/proto/**'
- 'crates/worker-proto/src/**'
- 'crates/worker/Cargo.toml'
- 'crates/worker/src/**'
- 'justfile'
- 'rust-toolchain.toml'

Expand All @@ -30,6 +36,12 @@ rust_package:
- 'crates/plugin/src/**'
- 'crates/types/Cargo.toml'
- 'crates/types/src/**'
- 'crates/worker-proto/Cargo.toml'
- 'crates/worker-proto/build.rs'
- 'crates/worker-proto/proto/**'
- 'crates/worker-proto/src/**'
- 'crates/worker/Cargo.toml'
- 'crates/worker/src/**'
- 'crates/ffi/Cargo.toml'
- 'crates/ffi/build.rs'
- 'crates/ffi/cbindgen.toml'
Expand Down Expand Up @@ -112,6 +124,7 @@ dependencies:
- 'Cargo.toml'
- 'about.toml'
- 'crates/**/Cargo.toml'
- 'crates/worker-proto/proto/**'
- 'crates/**/package.json'
- 'integrations/**/package.json'
- 'package.json'
Expand Down Expand Up @@ -149,6 +162,7 @@ rust:
- 'Cargo.toml'
- 'crates/**/Cargo.toml'
- 'crates/**/*.rs'
- 'crates/worker-proto/proto/**'
- 'crates/ffi/cbindgen.toml'
- 'integrations/coding-agents/**'

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,11 @@ jobs:
version="${{ github.ref_name }}"
packages=(
nemo-relay-types
nemo-relay-plugin
nemo-relay-worker-proto
nemo-relay-worker
nemo-relay
nemo-relay-adaptive
nemo-relay-plugin
nemo-relay-pii-redaction
nemo-relay-ffi
nemo-relay-cli
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ publish:artifactory:cargo:
artifactory = { index = "sparse+${NEMO_RELAY_CI_ARTIFACTORY_CARGO_URL}" }
EOF
export CARGO_REGISTRIES_ARTIFACTORY_TOKEN="Bearer ${NEMO_RELAY_CI_ARTIFACTORY_KEY}"
export NEMO_RELAY_ARTIFACTORY_CRATE_DIRS="types core adaptive plugin pii-redaction ffi cli"
export NEMO_RELAY_ARTIFACTORY_CRATE_DIRS="types plugin worker-proto worker core adaptive pii-redaction ffi cli"

crates="$(
uv run --no-project python - <<'PY'
Expand Down
2,343 changes: 1,981 additions & 362 deletions ATTRIBUTIONS-Rust.md

Large diffs are not rendered by default.

205 changes: 205 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ members = [
"crates/core",
"crates/types",
"crates/plugin",
"crates/worker-proto",
"crates/worker",
"crates/adaptive",
"crates/pii-redaction",
"crates/cli",
Expand All @@ -28,6 +30,8 @@ repository = "https://github.com/NVIDIA/NeMo-Relay"
nemo-relay = { version = "0.5.0", path = "crates/core", default-features = false }
nemo-relay-types = { version = "0.5.0", path = "crates/types" }
nemo-relay-plugin = { version = "0.5.0", path = "crates/plugin" }
nemo-relay-worker-proto = { version = "0.5.0", path = "crates/worker-proto" }
nemo-relay-worker = { version = "0.5.0", path = "crates/worker" }
nemo-relay-adaptive = { version = "0.5.0", path = "crates/adaptive" }
nemo-relay-pii-redaction = { version = "0.5.0", path = "crates/pii-redaction" }
nemo-relay-ffi = { version = "0.5.0", path = "crates/ffi" }
Expand Down
Loading
Loading