This repository has been archived on 2026-06-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
linux-kernel-bbrv3/.github/workflows
Claude c85b44c65a Cache the compiler with ccache to speed kernel builds
- Install ccache and wrap the native + arm64 cross compilers via
  /usr/lib/ccache symlinks on PATH; persist CCACHE_DIR / PATH across steps
  through $GITHUB_ENV / $GITHUB_PATH.
- Restore and save ~/.ccache with actions/cache@v4, keyed by arch + kernel
  version with a unique per-run suffix to force a save; restore-keys warm-start
  from a prior build of the same arch (including across point releases).
- Print `ccache -s` after the build. Deliberately do not cache out/ (freshly
  built packages) or the re-cloned kernel source.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-17 21:03:11 +08:00
..