-
Notifications
You must be signed in to change notification settings - Fork 2
51 lines (44 loc) · 1.17 KB
/
clean.yml
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
50
51
# SPDX-FileCopyrightText: 2023 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
name: Clean up anaconda repository
permissions: read-all
on:
schedule:
- cron: "0 0 * * *"
jobs:
cleanup_packages:
name: Clean up anaconda packages
strategy:
fail-fast: false
matrix:
repository: [
"dppy/dpctl",
"dppy/dpnp",
"dppy/numba-dpex",
"dppy/numba-mlir",
"dppy/dpbench",
"dppy/dpcpp-llvm-spirv",
]
runs-on: 'ubuntu-latest'
defaults:
run:
shell: bash -el {0}
steps:
- uses: conda-incubator/setup-miniconda@v2
with:
run-post: false
channel-priority: "disabled"
channels: conda-forge
python-version: "3.11"
- name: Install anaconda-client
run: conda install anaconda-client
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cleanup old packages
run: |
python scripts/cleanup-old-packages.py \
--verbose --force --token ${{ secrets.ANACONDA_TOKEN }} \
--package ${{matrix.repository}} --label dev