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
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ jobs:
# This job executes repository code (cargo build/test); don't persist
# the token in git config.
persist-credentials: false
# OpenHuman's public embedding facade shares TinyInference and
# TinyTools through its recorded nested submodules. Cargo path
# dependencies must see that complete recorded tree.
submodules: recursive

- uses: dtolnay/rust-toolchain@stable
with:
Expand Down Expand Up @@ -96,6 +100,7 @@ jobs:
- uses: actions/checkout@v7
with:
persist-credentials: false
submodules: recursive

- uses: dtolnay/rust-toolchain@stable

Expand All @@ -113,6 +118,7 @@ jobs:
- uses: actions/checkout@v7
with:
persist-credentials: false
submodules: recursive

# `rust-version` is inherited from `[workspace.package]`, so every member
# reports the same value. Read it off the package the module ships as
Expand Down Expand Up @@ -145,6 +151,7 @@ jobs:
- uses: actions/checkout@v7
with:
persist-credentials: false
submodules: recursive

- name: Check advisories, licenses, bans, and sources
uses: EmbarkStudios/cargo-deny-action@v2
Expand Down
12 changes: 12 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
[submodule "wiki"]
path = wiki
url = https://github.com/tinyhumansai/tinyhivemind.wiki.git
[submodule "vendor/openhuman"]
Comment thread
senamakel marked this conversation as resolved.
path = vendor/openhuman
url = https://github.com/tinyhumansai/openhuman.git
[submodule "vendor/tinyinference"]
path = vendor/tinyinference
url = https://github.com/tinyhumansai/tinyinference.git
[submodule "vendor/tinytools"]
path = vendor/tinytools
url = https://github.com/tinyhumansai/tinytools.git
[submodule "vendor/tinyjevclient"]
path = vendor/tinyjevclient
url = https://github.com/tinyhumansai/tinyjevclient.git
Loading
Loading