Now testing a "full" build as well as a "lite" build.

This commit is contained in:
Fabian Schlenz 2019-06-06 06:49:33 +02:00
parent f0d73f1a66
commit 177cad726f
1 changed files with 7 additions and 1 deletions

View File

@ -7,4 +7,10 @@ steps:
commands:
- pip install -U platformio
- cp include/config.sample.h include/config.h
- PLATFORMIO_BUILD_FLAGS="-DCONFIG_USABLE" pio run
- PLATFORMIO_BUILD_FLAGS="-DCONFIG_USABLE -DDEBUG -DMQTT_ENABLE -DMQTT_REPORT_METRICS" pio run
- name: Lite
image: python:2.7
commands:
- pip install -U platformio
- cp include/config.sample.h include/config.h
- PLATFORMIO_BUILD_FLAGS="-DCONFIG_USABLE -UDEBUG -UMQTT_ENABLE -UMQTT_REPORT_METRICS" pio run