renderbug/.woodpecker.yml
Torrie Fischer f279272c95
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
woodpecker: add static analysis
2023-02-18 18:05:49 +01:00

29 lines
878 B
YAML

pipeline:
build_bike:
group: build
image: python:3-alpine
commands:
- apk add yajl-tools
- pip install -U platformio
- pio run -e bike -e bike_ble
- pio run -e bike -e bike_ble --target buildfs
- pio check -e bike -e bike_ble
build_esp32:
group: build
image: python:3-alpine
commands:
- apk add yajl-tools
- pip install -U platformio
- pio run -e esp32 -e esp32_wifi -e esp32_bluetooth
- pio run -e esp32 -e esp32_wifi -e esp32_bluetooth --target buildfs
- pio check -e esp32 -e esp32_wifi -e esp32_bluetooth
build_8266:
group: build
image: python:3-alpine
commands:
- apk add yajl-tools
- pip install -U platformio
- pio run -e esp8266 -e esp8266_wifi
- pio run -e esp8266 -e esp8266_wifi --target buildfs
- pio check -e esp8266 -e esp8266_wifi