Skip to content

Commit

Permalink
fix(ci): resolve broken cache cleaning over several updates (#2682)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda authored Aug 8, 2024
1 parent 2d9c009 commit baf826b
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions .github/workflows/clear-cache.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,40 @@
name: Clear cache weekly
name: Clear cache ...

on:
pull_request:
paths:
- ".github/workflows/clear-cache.yml"
workflow_dispatch:
inputs:
pattern:
description: "pattern for cleaning cache"
default: "pip|conda"
default: "pip-|conda"
required: false
type: string
age-days:
description: "setting the age of caches in days to be dropped"
required: true
type: number
default: 5
schedule:
# on Sundays
- cron: "0 0 * * 0"

jobs:
cron-clear:
if: github.event_name == 'schedule'
uses: Lightning-AI/utilities/.github/workflows/clear-cache[email protected]
if: github.event_name == 'schedule' || github.event_name == 'pull_request'
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches[email protected]
with:
scripts-ref: v0.11.6
dry-run: ${{ github.event_name == 'pull_request' }}
pattern: "pip-latest"
age-days: 7

direct-clear:
if: github.event_name == 'workflow_dispatch'
uses: Lightning-AI/utilities/.github/workflows/clear-cache[email protected]
if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request'
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches[email protected]
with:
pattern: ${{ inputs.pattern }}
scripts-ref: v0.11.6
dry-run: ${{ github.event_name == 'pull_request' }}
pattern: ${{ inputs.pattern || 'pypi_wheels' }} # setting str in case of PR / debugging
age-days: ${{ fromJSON(inputs.age-days) || 0 }} # setting 0 in case of PR / debugging

0 comments on commit baf826b

Please sign in to comment.