2023-02-18 14:19:58 +00:00
|
|
|
pipeline:
|
2023-02-18 16:52:17 +00:00
|
|
|
build_esp32:
|
|
|
|
group: build
|
|
|
|
image: python
|
|
|
|
commands:
|
|
|
|
- pip install -U platformio
|
2023-02-20 07:07:29 +00:00
|
|
|
- pio run -e esp32 -e esp32_wifi -e esp32_bluetooth -e esp32_wifi_display
|
|
|
|
- pio run -e esp32 -e esp32_wifi -e esp32_bluetooth -e esp32_wifi_display --target buildfs
|
2023-02-18 17:49:40 +00:00
|
|
|
check:
|
|
|
|
image: python
|
|
|
|
- pip install -U platformio
|
2023-02-20 07:07:29 +00:00
|
|
|
- pio check -e esp32 --skip-packages --fail-on-defect medium --severity medium --severity high --severity low --pattern 'src/*' --pattern 'lib/*'
|