renderbug/.woodpecker.yml

26 lines
770 B
YAML
Raw Normal View History

2023-02-18 14:19:58 +00:00
pipeline:
2023-02-18 16:52:17 +00:00
build_bike:
2023-02-18 14:19:58 +00:00
group: build
image: python
commands:
- pip install -U platformio
2023-02-18 16:52:17 +00:00
- pio run -e bike -e bike_ble
- pio run -e bike -e bike_ble --target buildfs
2023-02-18 17:00:19 +00:00
- pio check -e bike -e bike_ble
2023-02-18 16:52:17 +00:00
build_esp32:
group: build
image: python
commands:
- 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
2023-02-18 17:00:19 +00:00
- pio check -e esp32 -e esp32_wifi -e esp32_bluetooth
2023-02-18 16:52:17 +00:00
build_8266:
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 17:00:19 +00:00
- pio check -e esp8266 -e esp8266_wifi