From f318226895382c8aa6521445989f578c184dffaa Mon Sep 17 00:00:00 2001 From: Mikhail Ryzhov Date: Wed, 25 Sep 2024 19:46:24 +0200 Subject: [PATCH] fixed step names --- .github/workflows/cleanup_caches.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cleanup_caches.yml b/.github/workflows/cleanup_caches.yml index 91050db6c6efbe..3f1c413253bdb5 100644 --- a/.github/workflows/cleanup_caches.yml +++ b/.github/workflows/cleanup_caches.yml @@ -10,6 +10,7 @@ permissions: read-all jobs: Cleanup_PIP: + name: Cleanup PIP cache runs-on: aks-linux-2-cores-8gb container: image: openvinogithubactions.azurecr.io/dockerhub/ubuntu:20.04 @@ -34,7 +35,8 @@ jobs: echo "Cache info: " du -h -d2 ${PIP_CACHE_PATH} - Cleanup_CCACHE: + Cleanup_ccache_lin: + name: Cleanup Linux ccache runs-on: aks-linux-2-cores-8gb container: image: openvinogithubactions.azurecr.io/dockerhub/ubuntu:20.04 @@ -52,14 +54,15 @@ jobs: - name: Cleanup ccache uses: ./.github/actions/cache/cleanup with: - cache-size: 100 + cache-size: 300 max-cache-size: 750 cache-path: ${{ env.CCACHE_PATH }} recursive: true key: '.' - Cleanup_CCACHE_win: + Cleanup_ccache_win: + name: Cleanup Windows ccache runs-on: 'aks-win-4-cores-8gb' env: CCACHE_PATH: C:\\mount\\caches\\ccache @@ -75,6 +78,6 @@ jobs: with: cache-size: 300 max-cache-size: 750 - cache-path: ${{ env.CCACHE_PATH }} + cache-path: C:\\mount\\caches\\ccache recursive: true key: '.' \ No newline at end of file