-
Notifications
You must be signed in to change notification settings - Fork 82
49 lines (42 loc) · 1.51 KB
/
ci-images-cache-cleaner.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Image CI Cache Cleaner
# Any change in triggers needs to be reflected in the concurrency group.
on:
workflow_dispatch:
schedule:
# once for a week
- cron: "0 20 * * 0"
permissions: write-all
# concurrency:
# group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.sha }}
# cancel-in-progress: true
jobs:
cache-cleaner:
runs-on: ubuntu-latest
strategy:
matrix:
include:
# for each image
- name: controllerimage
steps:
# Load Golang cache build from GitHub
- name: Load ${{ matrix.name }} Golang cache build from GitHub
uses: actions/cache@v3
id: cache
with:
path: /tmp/.cache/${{ matrix.name }}
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}-${{ matrix.name }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}-${{ matrix.name }}-
${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}-
${{ runner.os }}-go-
- name: Create ${{ matrix.name }} cache directory
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
shell: bash
run: |
mkdir -p /tmp/.cache/${{ matrix.name }}
# Clean docker's golang's cache
- name: Clean ${{ matrix.name }} Golang cache from GitHub
shell: bash
run: |
rm -f /tmp/.cache/${{ matrix.name }}/go-build-cache.tar.gz
rm -f /tmp/.cache/${{ matrix.name }}/go-pkg-cache.tar.gz