Enhance the capabilities of the AI Intent plugin (#1605)

This commit is contained in:
007gzs
2024-12-20 10:25:17 +08:00
committed by GitHub
parent 748bcb083a
commit 4eaf204737
6 changed files with 616 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ elif [ "$TYPE" == "RUST" ]
then
cd ./plugins/wasm-rust/
make lint-base
make test-base
if [ ! -n "$INNER_PLUGIN_NAME" ]; then
EXTENSIONS_DIR=$(pwd)"/extensions/"
echo "🚀 Build all Rust WasmPlugins under folder of $EXTENSIONS_DIR"
@@ -42,6 +43,7 @@ then
name=${file##*/}
echo "🚀 Build Rust WasmPlugin: $name"
PLUGIN_NAME=${name} make lint
PLUGIN_NAME=${name} make test
PLUGIN_NAME=${name} make build
fi
done