woodpecker: use parallel build groups
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Torrie Fischer 2023-02-18 17:52:17 +01:00
parent ea876e243d
commit cbe3ba3f30

View File

@ -1,18 +1,22 @@
pipeline: pipeline:
build: build_bike:
group: build group: build
image: python image: python
commands: commands:
- pip install -U platformio - pip install -U platformio
- pio run -e ${VARIANT} - pio run -e bike -e bike_ble
- pio run -e ${VARIANT} --target buildfs - pio run -e bike -e bike_ble --target buildfs
matrix: build_esp32:
VARIANT: group: build
- bike image: python
- bike_ble commands:
- esp32 - pip install -U platformio
- esp32_wifi - pio run -e esp32 -e esp32_wifi -e esp32_bluetooth
- esp32_bluetooth - pio run -e esp32 -e esp32_wifi -e esp32_bluetooth --target buildfs
- esp8266_wifi build_8266:
- esp8266 group: build
- esp8266-12f image: python
commands:
- pip install -U platformio
- pio run -e esp8266 -e esp8266_wifi
- pio run -e esp8266 -e esp8266_wifi --target buildfs