Dockerise

This commit is contained in:
clienthax 2021-08-06 18:07:52 +01:00
parent 8ec2dd75c2
commit 55e2e94b63
3921 changed files with 178 additions and 111 deletions

View file

@ -1,25 +0,0 @@
import os
from ctcconfig import *
verdata = {}
# Get all APKs from the dir
for file in os.listdir(RESULT_FOLDER):
if not file.startswith("cutthecord-"):
continue
filedata = file.replace("cutthecord-", "").replace(".apk", "").split("-")
if filedata[1] not in verdata:
verdata[filedata[1]] = []
verdata[filedata[1]].append(int(filedata[0]))
# Delete the older APKs
for branch in verdata:
vers = verdata[branch]
vers.sort()
if len(vers) <= CLEAN_ARTIFACT_KEEP_COUNT:
continue
for ver in vers[0:-1 * CLEAN_ARTIFACT_KEEP_COUNT]:
file = os.path.join(RESULT_FOLDER, f"cutthecord-{ver}-{branch}.apk")
os.unlink(file)