summaryrefslogtreecommitdiff
path: root/lib/lvgl/.github/workflows/build_micropython.yml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lvgl/.github/workflows/build_micropython.yml')
m---------lib/lvgl0
-rw-r--r--lib/lvgl/.github/workflows/build_micropython.yml74
2 files changed, 74 insertions, 0 deletions
diff --git a/lib/lvgl b/lib/lvgl
deleted file mode 160000
-Subproject 0732400e7b564dd0e7dc4a924619d8e19c5b23a
diff --git a/lib/lvgl/.github/workflows/build_micropython.yml b/lib/lvgl/.github/workflows/build_micropython.yml
new file mode 100644
index 00000000..e28de5f1
--- /dev/null
+++ b/lib/lvgl/.github/workflows/build_micropython.yml
@@ -0,0 +1,74 @@
+name: Micropython CI
+
+on:
+ push:
+ pull_request:
+
+jobs:
+ build:
+ if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
+ name: Build ${{ matrix.port }} port
+ runs-on: ubuntu-latest
+ continue-on-error: true
+ strategy:
+ matrix:
+ port: ['unix', 'esp32', 'stm32', 'rp2']
+ steps:
+ - uses: ammaraskar/gcc-problem-matcher@master
+ - name: Install Dependencies
+ run: |
+ sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse"
+ sudo apt-get update -y -qq
+ sudo apt-get install libsdl2-dev parallel libfreetype-dev librlottie-dev
+ - name: Clone lv_micropython
+ run: |
+ git clone https://github.com/lvgl/lv_micropython.git .
+ git checkout release/v8
+ - name: Initialize lv_bindings submodule
+ run: git submodule update --init --recursive lib/lv_bindings
+ - name: Update ${{ matrix.port }} port submodules
+ if: matrix.port != 'esp32'
+ # VARIANT needed for unix
+ run: make -C ports/${{ matrix.port }} VARIANT=dev DEBUG=1 USER_C_MODULES=../../lib/lv_bindings/bindings.cmake submodules
+ - name: Checkout LVGL submodule
+ working-directory: ./lib/lv_bindings/lvgl
+ run: |
+ git fetch --force ${{ github.event.repository.html_url }} "+refs/heads/*:refs/remotes/origin/*"
+ git fetch --force ${{ github.event.repository.html_url }} "+refs/pull/*:refs/remotes/origin/pr/*"
+ git checkout ${{ github.sha }} || git checkout ${{ github.event.pull_request.head.sha }}
+ git submodule update --init --recursive
+ - name: Build mpy-cross
+ run: make -j $(nproc) -C mpy-cross
+
+ # ESP32 port
+ - name: Setup ESP-IDF
+ if: matrix.port == 'esp32'
+ run: |
+ source tools/ci.sh && ci_esp32_idf44_setup
+ - name: Build ESP32 port
+ if: matrix.port == 'esp32'
+ run: |
+ source tools/ci.sh && ci_esp32_build
+
+ # STM32 & RPi Pico port
+ - name: arm-none-eabi-gcc
+ if: matrix.port == 'stm32' || matrix.port == 'rp2'
+ uses: carlosperate/arm-none-eabi-gcc-action@v1.3.0
+ with:
+ release: '9-2019-q4' # The arm-none-eabi-gcc release to use.
+ - name: Build STM32 port
+ if: matrix.port == 'stm32'
+ run: make -j $(nproc) -C ports/stm32 BOARD=STM32F7DISC
+ - name: Build Raspberry Pi PICO port
+ if: matrix.port == 'rp2'
+ run: make -j $(nproc) -C ports/rp2 BOARD=PICO USER_C_MODULES=../../lib/lv_bindings/bindings.cmake
+ # Unix port
+ - name: Build Unix port
+ if: matrix.port == 'unix'
+ run: make -j $(nproc) -C ports/unix VARIANT=dev DEBUG=1
+ - name: Run tests
+ if: success() && matrix.port == 'unix'
+ run: |
+ export XDG_RUNTIME_DIR=/tmp
+ lib/lv_bindings/tests/run.sh
+