2023-02-18 15:19:58 +01:00
|
|
|
pipeline:
|
2023-02-18 17:52:17 +01:00
|
|
|
build_esp32:
|
|
|
|
group: build
|
|
|
|
image: python
|
|
|
|
commands:
|
|
|
|
- pip install -U platformio
|
2023-03-03 19:48:01 +01:00
|
|
|
- pio run -e esp32 -e esp32_wifi -e esp32_wifi_display
|
|
|
|
- pio run -e esp32 -e esp32_wifi -e esp32_wifi_display --target buildfs
|
2023-03-03 18:23:18 +01:00
|
|
|
build_esp8266:
|
|
|
|
group: build
|
|
|
|
image: python
|
|
|
|
commands:
|
|
|
|
- pip install -U platformio
|
|
|
|
- pio run -e esp8266 -e esp8266_wifi
|
|
|
|
- pio run -e esp8266 -e esp8266_wifi --target buildfs
|
2023-02-18 18:49:40 +01:00
|
|
|
check:
|
|
|
|
image: python
|
|
|
|
- pip install -U platformio
|
2023-03-03 18:47:40 +01:00
|
|
|
- pio check -e esp8266 -e esp32 --skip-packages --severity medium --severity high --pattern 'src' --pattern 'lib/Figments' --fail-on-defect high
|
2023-03-04 13:16:17 +01:00
|
|
|
docs:
|
|
|
|
image: python
|
|
|
|
- pip install -U breathe sphinx
|
|
|
|
- cd docs && sphinx
|