ci: fix ccache for Ubuntu 22.04
Checks
Commit Message
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: stable@dpdk.org
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
.github/workflows/build.yml | 2 ++
1 file changed, 2 insertions(+)
Comments
On Thu, Mar 6, 2025 at 3:34 PM David Marchand <david.marchand@redhat.com> wrote:
>
> 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: stable@dpdk.org
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
Applied, thanks.
@@ -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