Files
PX4-Autopilot/.github/workflows
Jacob Dahl 3b96afa1ec fix(ci): repair broken ccache in docs metadata jobs (#27583)
Both docs-orchestrator metadata jobs set CCACHE_DIR: ~/.ccache via the job env. Actions stores env values literally and ccache does not expand ~, so ccache used $GITHUB_WORKSPACE/~/.ccache while actions/cache saved and restored $HOME/.ccache. Every restore was empty and every save uploaded nothing, so px4_sitl_default rebuilt cold on every run.

Switch both jobs to the shared setup-ccache/save-ccache actions, which default ccache to $HOME/.ccache (matching the cached path) and apply the same base_dir, compiler_check, and compression settings used across the rest of CI.
2026-06-10 10:39:46 +10:00
..