SE-PRG/azmitool

add clean-up script for build machine

开放

#216 创建于 2020年10月20日

 (0 条评论) (0 个反应) (0 位负责人)C# (5 个派生)auto 404
good first issuetesting

仓库指标

星标
 (2 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

Build machine is getting disk full from time to time. The biggest problem is this directory: /home/builder/cache_dotnet_bundle_extract/azmi

Write some short script, like:

df -h
du <cachefolder>
if [[ "$(pipeline_variable)" == "delete" ]]; then rm -rf <cachefolder>; fi

df
du

And schedule is at pipeline

贡献者指南