mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-05-14 13:04:08 +00:00
* ci: add workflow to publish webui to Hugging Face bucket * ci: add webui release job to release workflow * ci: test webui release job * chore: Return to default minification strategy for build output files * ci: extract webui build into separate workflow and job * chore: Ignore webui static output + clean up references * chore: Delete legacy webui static output * chore: Ignore webui build static output * fix: Workflow * fix: Versioning naming * chore: Update package name * test: Test CI fix * refactor: Naming * server: implement webui build strategy with HF Bucket support * chore: Remove test workflow * chore: Use WebUI build workflow call in other workflows * server: HF Buckets fallback for WebUI build * refactor: App name variable * refactor: Naming * fix: Retrieve loading.html * fix: workflow syntax * fix: Rewrite malformed release.yml * fix: Req param * test: Re-add missing Playwright installation for CI tests * refactor: Logic & security improvements * refactor: Retrieve publishing jobs and DRY the workflows * fix: Test workflow syntax * fix: Upstream Release Tag for test workflow * chore: Remove test workflow * ci: Run WebUI jobs on `ubuntu-24.04-arm` * refactor: Post-CR cleanup Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> Co-authored-by: Aleksander Grygier <aleksander.grygier@gmail.com> * refactor: CI cleanup * refactor: Cleanup * test: Test workflow * refactor: use LLAMA_BUILD_NUMBER instead of LLAMA_BUILD_TAG for HF Bucket webui downloads * server: add fallback mechanism for HF Bucket webui downloads from latest directory * fix: Incorrect argument order in file(SHA256) calls for checksum verification * refactor: Use cmake script for handling the HF Bucket download on build time * feat: support local npm build for WebUI assets * refactor: add `HF_ENABLED` flag to control WebUI build/download provisioning * refactor: Cleanup * chore: Remove test workflow * fix: remove s390x from release workflow * fix: add webui-build dependency to ubuntu-22-rocm and windows-hip * Revert "fix: remove s390x from release workflow" This reverts commit debcfffa9bc1e3112eae41f2d29741b682e4eb19. * fix: Release workflow file * fix: Proper release tag used for HF Bucket upload * fix: Remove duplicate steps in release workflow --------- Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
79 lines
1.8 KiB
Bash
Executable File
79 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Script to install pre-commit hook for webui
|
|
# Pre-commit: formats, checks, and builds webui
|
|
|
|
REPO_ROOT=$(git rev-parse --show-toplevel)
|
|
PRE_COMMIT_HOOK="$REPO_ROOT/.git/hooks/pre-commit"
|
|
|
|
echo "Installing pre-commit hook for webui..."
|
|
|
|
# Create the pre-commit hook
|
|
cat > "$PRE_COMMIT_HOOK" << 'EOF'
|
|
#!/bin/bash
|
|
|
|
# Check if there are any changes in the webui directory
|
|
if git diff --cached --name-only | grep -q "^tools/server/webui/"; then
|
|
REPO_ROOT=$(git rev-parse --show-toplevel)
|
|
cd "$REPO_ROOT/tools/server/webui"
|
|
|
|
# Check if package.json exists
|
|
if [ ! -f "package.json" ]; then
|
|
echo "Error: package.json not found in tools/server/webui"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Formatting and checking webui code..."
|
|
|
|
# Run the format command
|
|
npm run format
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error: npm run format failed"
|
|
exit 1
|
|
fi
|
|
|
|
# Run the lint command
|
|
npm run lint
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error: npm run lint failed"
|
|
exit 1
|
|
fi
|
|
|
|
# Run the check command
|
|
npm run check
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error: npm run check failed"
|
|
exit 1
|
|
fi
|
|
|
|
echo "✅ Webui code formatted and checked successfully"
|
|
|
|
# Build the webui
|
|
echo "Building webui..."
|
|
npm run build
|
|
if [ $? -ne 0 ]; then
|
|
echo "❌ npm run build failed"
|
|
exit 1
|
|
fi
|
|
|
|
echo "✅ Webui built successfully"
|
|
fi
|
|
|
|
exit 0
|
|
EOF
|
|
|
|
# Make hook executable
|
|
chmod +x "$PRE_COMMIT_HOOK"
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "✅ Git hook installed successfully!"
|
|
echo " Pre-commit: $PRE_COMMIT_HOOK"
|
|
echo ""
|
|
echo "The hook will automatically:"
|
|
echo " • Format, lint and check webui code before commits"
|
|
echo " • Build webui"
|
|
else
|
|
echo "❌ Failed to make hook executable"
|
|
exit 1
|
|
fi
|