This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ROCm-Research-Archive/_TestScripts/Scripts and Tests/rebuild_webui.sh
T
2026-08-20 00:45:43 +02:00

12 lines
359 B
Bash

#!/bin/bash
set -e
cd /home/fabian/sd-restapi/build
rm -f CMakeCache.txt
echo "=== CMAKE ==="
cmake .. -DSD_VULKAN=ON -DGGML_VULKAN=ON -DSDCPP_WEBUI=ON -DSDCPP_WEBSOCKET=ON -DCMAKE_BUILD_TYPE=Release 2>&1 | grep -E "WebSocket|Web UI|===|Vulkan"
echo "=== BUILD ==="
make -j12 2>&1 | tail -5
echo "=== RESULT ==="
ls -la bin/sdcpp-restapi
echo "BUILD SUCCESS"