Skip to content

Commit

Permalink
fixed step names
Browse files Browse the repository at this point in the history
  • Loading branch information
mryzhov committed Sep 25, 2024
1 parent 5b71f5f commit f318226
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/cleanup_caches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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: '.'

0 comments on commit f318226

Please sign in to comment.