-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathbuild-all.cmd
More file actions
43 lines (36 loc) · 833 Bytes
/
build-all.cmd
File metadata and controls
43 lines (36 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@echo off
setlocal
:: Run from the script's own directory
pushd "%~dp0"
echo.
echo ========================================
echo Building All Performance Monitor Projects
echo ========================================
echo.
:: Build Full Edition (Dashboard + both Installers)
call "%~dp0build-dashboard.cmd"
if %ERRORLEVEL% neq 0 (
echo.
echo ERROR: Full Edition build failed!
popd
exit /b 1
)
echo.
:: Build Lite Edition
call "%~dp0build-lite.cmd"
if %ERRORLEVEL% neq 0 (
echo.
echo ERROR: Lite Edition build failed!
popd
exit /b 1
)
echo.
echo ========================================
echo All Builds Complete!
echo ========================================
echo.
echo Release artifacts in releases\:
dir /B releases\*.zip 2>nul
echo.
popd
endlocal