diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d4d156e..10f3ea86 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: id: cache-ccache uses: actions/cache@v3 with: - key: default2 + key: default3 path: ccache-build - name: inject cache into docker uses: reproducible-containers/buildkit-cache-dance@v3.1.0 diff --git a/build/Dockerfile.image b/build/Dockerfile.image index 44d5d382..922accd1 100644 --- a/build/Dockerfile.image +++ b/build/Dockerfile.image @@ -29,7 +29,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ RUN python3 -m pip install meson==0.61.2 -RUN find /root/.cache/ccache +RUN find /root/.cache || true FROM environment AS builder @@ -42,7 +42,7 @@ ARG YANET_VERSION_CUSTOM=development COPY . /opt/yanet WORKDIR /opt/yanet -RUN find /root/.cache/ccache +RUN find /root/.cache || true RUN meson setup --prefix=/target \ -Dtarget=release \ -Darch=corei7 \