From 5dce687d723363e5861bab20fdbfe33f00842045 Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Sat, 22 Nov 2025 09:43:49 -0800 Subject: [PATCH] wip --- .github/workflows/custom_build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/custom_build.yml b/.github/workflows/custom_build.yml index 85d0ff5..2fd9eeb 100644 --- a/.github/workflows/custom_build.yml +++ b/.github/workflows/custom_build.yml @@ -28,6 +28,16 @@ jobs: submodules: recursive fetch-depth: 1 + - name: Cache PlatformIO + uses: actions/cache@v4 + with: + path: | + ~/.platformio + firmware/.pio/libdeps + key: ${{ runner.os }}-pio-${{ hashFiles('firmware/platformio.ini') }} + restore-keys: | + ${{ runner.os }}-pio- + - name: Set up Python uses: actions/setup-python@v4 with: