-
Notifications
You must be signed in to change notification settings - Fork 5
37 lines (32 loc) · 1.06 KB
/
cleanup_base.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
# SPDX-FileCopyrightText: (C) The kokkos-fft development team, see COPYRIGHT.md file
#
# SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
# Clean old Docker and Singularity images that are too old periodically or
# manually.
name: Cleanup base images
on:
schedule:
- cron: "0 3 2,16 * *" # every 2nd and 16th of the month at 3am UTC
workflow_dispatch:
jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- name: Cleanup old images
uses: SmartsquareGmbH/[email protected]
with:
organization: kokkos
type: container
names: |
kokkos-fft/base_nvcc_main
kokkos-fft/base_nvcc_pr
kokkos-fft/base_nvcc_singularity_main
kokkos-fft/base_nvcc_singularity_pr
kokkos-fft/base_rocm_main
kokkos-fft/base_rocm_pr
kokkos-fft/base_gcc_main
kokkos-fft/base_gcc_pr
kokkos-fft/base_clang_main
kokkos-fft/base_clang_pr
kokkos-fft/base_intel_main
kokkos-fft/base_intel_pr