Replies: 3 comments 2 replies
-
|
关于缓存的使用,建议阅读 https://docs.github.com/cn/actions/advanced-guides/caching-dependencies-to-speed-up-workflows#using-the-cache-action |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
关于自动清理release,最好看一下原版https://github.com/BtbN/FFmpeg-Builds/blob/master/util/prunetags.sh TAGS=( $(git tag -l "autobuild-*" | sort -r) )他用这个筛选出只有autobuild-开头的tag参与清理 |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
感谢提醒,已修改。对于 cache 缓存,虽然我上午测试构建成功的版本在测试中符合预期;不过正如你所说,混用缓存是一个问题,所以我决定之后只自动构建 libass 修改版,毕竟官方版构建选择较多 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
比如cache缓存,一个仓库一共只能存储5G,这使得目前仓库里只会有唯一一个缓存,光一个版本就使用3G+,这使得目前仓库里只会有唯一一个缓存,这个缓存能否在你这样依赖库细微不同的mpv编译中混用是一个问题
并且缓存在不被使用7天后就被清理的
又比如自动删除旧release,它是把所有release按照月份以及最近的tag来保留,如果你是固定把几种构建输出到不变的tag里,之后估计就会因为超过14天被删除了
Beta Was this translation helpful? Give feedback.
All reactions