From 923a4c938bb34e0f1b785d178f4631f4e34014da Mon Sep 17 00:00:00 2001 From: nthnn Date: Fri, 8 Mar 2024 02:48:24 +0800 Subject: [PATCH] Added ILI9341 example on CI workflow pipeline. --- .github/workflows/arduino_ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/arduino_ci.yml b/.github/workflows/arduino_ci.yml index 0812a8c..3ce791f 100644 --- a/.github/workflows/arduino_ci.yml +++ b/.github/workflows/arduino_ci.yml @@ -30,8 +30,10 @@ jobs: - name: Download Arduino Dependencies run: | git clone https://github.com/nkaaf/Arduino-List.git + git clone https://github.com/fdivitto/fabgl.git - name: Build Arduino library run: | arduino-cli compile --fqbn esp32:esp32:esp32wrover --library Arduino-List --library src --build-path build examples/full_example/full_example.ino + arduino-cli compile --fqbn esp32:esp32:esp32wrover --library Arduino-List --library fabgl --library src --build-path build examples/ili9341_example/ili9341_example.ino arduino-cli compile --fqbn esp32:esp32:esp32wrover --library Arduino-List --library src --build-path build examples/shell_example/shell_example.ino