From 765a78189f6d83b11e4a765603708aab0be49cf4 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 12 Sep 2025 17:27:13 +0000 Subject: [PATCH] feat: add Rust build caching to ci-lazer-solana workflow - Add cache-workspaces parameter to actions-rust-lang/setup-rust-toolchain@v1 - Cache target/ directory using Cargo.lock hash as cache key - Follows same pattern as other lazer workflows in pyth-examples - Improves build performance by caching compiled dependencies Co-Authored-By: Jayant --- .github/workflows/ci-lazer-solana.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-lazer-solana.yml b/.github/workflows/ci-lazer-solana.yml index 0b98262..949dd38 100644 --- a/.github/workflows/ci-lazer-solana.yml +++ b/.github/workflows/ci-lazer-solana.yml @@ -18,6 +18,7 @@ jobs: with: toolchain: 1.81.0 components: clippy, rustfmt + cache-workspaces: "lazer/solana -> target" - name: install extra tools run: | cargo install --locked taplo-cli@0.9.3