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
2 changes: 1 addition & 1 deletion .github/workflows/marketplace-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake pkg-config libclang-dev wget libopenblas-dev zstd patchelf python3-yaml python3-tomli
sudo apt-get install -y cmake pkg-config libclang-dev libfontconfig1-dev wget libopenblas-dev zstd patchelf python3-yaml python3-tomli
- name: Install minisign
run: |
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ jobs:
working-directory: plugins/native/nllb
run: cargo fmt -- --check

- name: Check formatting - Slint
working-directory: plugins/native/slint
run: cargo fmt -- --check

# Lint plugins that can build without pre-installed native libraries
lint-simple:
name: Lint (Simple Plugins)
Expand All @@ -65,7 +69,7 @@ jobs:
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake pkg-config libclang-dev
sudo apt-get install -y cmake pkg-config libclang-dev libfontconfig1-dev

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
Expand All @@ -79,12 +83,17 @@ jobs:
with:
workspaces: |
plugins/native/vad
plugins/native/slint
cache-on-failure: true

- name: Clippy - VAD
working-directory: plugins/native/vad
run: cargo clippy -- -D warnings

- name: Clippy - Slint
working-directory: plugins/native/slint
run: cargo clippy -- -D warnings

# Lint Whisper plugin (builds whisper.cpp from source)
lint-whisper:
name: Lint (Whisper)
Expand Down
2 changes: 2 additions & 0 deletions crates/api/src/bin/generate_ts_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
format!("export {}", streamkit_api::yaml::OutputType::decl(&cfg)),
format!("export {}", streamkit_api::yaml::FieldHint::decl(&cfg)),
format!("export {}", streamkit_api::yaml::FieldType::decl(&cfg)),
format!("export {}", streamkit_api::yaml::ControlType::decl(&cfg)),
format!("export {}", streamkit_api::yaml::ControlConfig::decl(&cfg)),
];

let output = declarations.join("\n\n");
Expand Down
Loading
Loading