From 44e9fe3b4b13e00476f3eef0bf66ba305667f036 Mon Sep 17 00:00:00 2001 From: sugikazu75 Date: Wed, 4 Dec 2024 19:22:51 +0900 Subject: [PATCH 1/2] [lib][vl53l3c] fix include path --- lib/vl53l3c/vl53lx_platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vl53l3c/vl53lx_platform.h b/lib/vl53l3c/vl53lx_platform.h index dbaa1d30d4..e0b0d13692 100644 --- a/lib/vl53l3c/vl53lx_platform.h +++ b/lib/vl53l3c/vl53lx_platform.h @@ -31,7 +31,7 @@ #define _VL53LX_PLATFORM_H_ #include -#include "VL53Lx_ll_def.h" +#include "vl53lx_ll_def.h" #define VL53LX_IPP_API #include From f430441bb1153f9edbb484d548482b53535f7444 Mon Sep 17 00:00:00 2001 From: sugikazu75 Date: Wed, 4 Dec 2024 20:51:52 +0900 Subject: [PATCH 2/2] [GithubAction] add platformio build test --- .github/workflows/platformio.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/platformio.yml diff --git a/.github/workflows/platformio.yml b/.github/workflows/platformio.yml new file mode 100644 index 0000000000..a4f7c3ca51 --- /dev/null +++ b/.github/workflows/platformio.yml @@ -0,0 +1,24 @@ +name: Build test with platformio + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: actions/cache@v3 + with: + path: | + ~/.cache/pip + ~/.platformio/.cache + key: ${{ runner.os }}-pio + - uses: actions/setup-python@v4 + with: + python-version: '3.11' + - name: Install PlatformIO Core + run: pip install --upgrade platformio + + - name: Build PlatformIO Project + run: pio run