By default (and if no $HOME/.ccache directory exists), Ubuntu 22.04 ccache stores its data in $HOME/.cache/ccache. As a result, since the switch to Ubuntu 22.04, ccache has not been functional.
Set the ccache directory to the location cached in GHA. Note: ccache is working with the Fedora containers, as the presence of a .ccache directory made ccache use it, still, explicitly set CCACHE_DIR for consistency. Fixes: 8400093195dd ("ci: bump tested distributions in GHA") Cc: sta...@dpdk.org Signed-off-by: David Marchand <david.march...@redhat.com> --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 183b0b1999..a5739a72c6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,6 +45,7 @@ jobs: BUILD_DOCS: ${{ contains(matrix.config.checks, 'doc') }} BUILD_EXAMPLES: ${{ contains(matrix.config.checks, 'examples') }} CC: ccache ${{ matrix.config.compiler }} + CCACHE_DIR: $HOME/.ccache DEF_LIB: ${{ matrix.config.library }} LIBABIGAIL_VERSION: libabigail-2.6 MINGW: ${{ matrix.config.cross == 'mingw' }} @@ -307,6 +308,7 @@ jobs: mkdir -p ~/.ccache > ~/env echo CC=ccache ${{ matrix.config.compiler }} >> ~/env + echo CCACHE_DIR=/root/.ccache >> ~/env echo DEF_LIB=${{ matrix.config.library }} >> ~/env echo STDATOMIC=false >> ~/env - name: Load the cached image -- 2.48.1