feat(lvgl): working lvgl now!!!

This commit is contained in:
2024-11-15 14:24:33 +01:00
parent a83535fd1e
commit ef99d64d08
16 changed files with 2548 additions and 0 deletions

View File

@ -0,0 +1,42 @@
name: Continuous Integration
on:
push:
paths-ignore:
- "**/README.md"
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
rust-checks:
name: Rust Checks
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
action:
- command: build
args: --release
- command: fmt
args: --all -- --check --color always
- command: clippy
args: --all-targets --all-features --workspace -- -D warnings
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Enable caching
uses: Swatinem/rust-cache@v2
- name: Install gcc-multilib
run: sudo apt-get install gcc-multilib
- name: Setup Rust
uses: esp-rs/xtensa-toolchain@v1.5
with:
default: true
buildtargets: esp32
ldproxy: true
- name: Run command
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }}