From a9a2fb49d788de3bb5998239b30d2d972243b3c6 Mon Sep 17 00:00:00 2001 From: Torrie Fischer Date: Mon, 20 Feb 2023 08:07:29 +0100 Subject: [PATCH] woodpecker: add new display variant, and adjust pio check command --- .woodpecker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index f3ce1ba..e91ddfa 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -4,9 +4,9 @@ pipeline: 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 + - 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 check: image: python - pip install -U platformio - - pio check -e esp32 + - pio check -e esp32 --skip-packages --fail-on-defect medium --severity medium --severity high --severity low --pattern 'src/*' --pattern 'lib/*'