sciagent code + Gitea Actions CI/CD
CI/CD / backend (push) Failing after 2m8s
CI/CD / frontend (push) Failing after 1m40s
CI/CD / deploy (push) Has been skipped

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Thinh Lam
2026-06-30 09:38:30 +07:00
commit 688fac73e9
1167 changed files with 158244 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
@echo off
REM Wrapper cho build-all.ps1 — ưu tiên pwsh (PS7+), fallback powershell (PS5.1)
setlocal
set ROOT=%~dp0..
pushd "%ROOT%"
where pwsh >nul 2>&1
if %ERRORLEVEL% == 0 (
pwsh -NoProfile -ExecutionPolicy Bypass -File "%~dp0build-all.ps1" %*
) else (
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0build-all.ps1" %*
)
set RC=%ERRORLEVEL%
popd
endlocal & exit /b %RC%