fix: use git dependency for tsclientlib (CI submodule compat)
Switch from path dependency to git dependency for tsclientlib/tsproto-packets so CI can fetch them without needing git submodule initialization.
This commit is contained in:
@@ -31,8 +31,6 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Install Rust
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
@@ -96,8 +94,6 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Install Rust
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
|
||||
+2
-2
@@ -56,5 +56,5 @@ tscore = { path = "tscore" }
|
||||
tsaudio = { path = "tsaudio" }
|
||||
tsdb = { path = "tsdb" }
|
||||
shared = { path = "shared" }
|
||||
tsclientlib = { path = "../refercence/tsclientlib/tsclientlib", default-features = false, features = ["default-tls"] }
|
||||
tsproto-packets = { path = "../refercence/tsclientlib/utils/tsproto-packets" }
|
||||
tsclientlib = { git = "https://github.com/ReSpeak/tsclientlib.git", branch = "master", default-features = false, features = ["default-tls"] }
|
||||
tsproto-packets = { git = "https://github.com/ReSpeak/tsclientlib.git", branch = "master" }
|
||||
|
||||
Reference in New Issue
Block a user