-
Notifications
You must be signed in to change notification settings - Fork 14
/
pio_ci_ex_ALL.bat
38 lines (34 loc) · 1.65 KB
/
pio_ci_ex_ALL.bat
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
@echo off
rem Build all listed examples of this library on PIO CLI; may take some time
rem Verifies that library and all examples still compile
setlocal EnableDelayedExpansion enableextensions
set CI_DIR=%~dp0..\async-esp-fs-webserver.pio-ci
set EXAMPLES=simpleServerCaptive simpleServer withWebSocket customHTML customOptions gpio_list handleFormData highcharts remoteOTA esp32-cam
::set EXAMPLES=simpleServerCaptive
:: simpleServer withWebSocket customHTML
set BOARDS= esp32dev esp12e
set OPT_esp12e=-O "[email protected]"
set OPT_esp32dev=-O "[email protected]"
set NOT_esp12e=esp32-cam
set NOT_esp32dev=esp8266-app
set EXCLIB= --exclude=lib\*\.git* --exclude=lib\*\.pio --exclude=lib\*\.vscode --exclude=lib\*\built-in-webpages --exclude=lib\*\examples
FOR %%B IN (%BOARDS%) DO (
FOR %%E IN (%EXAMPLES%) DO (
if %%E==!NOT_%%B! (
echo ### not compiling %%E for %%B
) else (
set CIEXDIR=%CI_DIR%\ci_ex_%%B_%%E
IF EXIST "!CIEXDIR!" RMDIR /s/q "!CIEXDIR!"
MKDIR "!CIEXDIR!"
set OPT=!OPT_%%B!
set OUT="!CIEXDIR!\build.out.txt"
set ERR="!CIEXDIR!\build.err.txt"
echo ### Compiling %%E for %%B
echo +pio ci -b %%B !OPT! --keep-build-dir --build-dir="!CIEXDIR!\" --lib=. %EXCLIB% .\examples\%%E\*.* 1^>!OUT! 2^>!ERR!
pio ci -b %%B !OPT! --keep-build-dir --build-dir="!CIEXDIR!" --lib=. %EXCLIB% .\examples\%%E\*.* >!OUT! 2>!ERR!
FOR /f %%i IN (!ERR!) DO IF EXIST %%i IF %%~zi GTR 0 ECHO ###ERROR in %%i && TYPE %%i
)
echo ### DONE
)
)
:: note activation pio verbose option '-v' generates a lot of output (~25k/compile, ~2MB/pio-ci)