标签: travis-ci
目前,我必须在每个构建中按源构建依赖关系,并且通常需要10分钟构建中的5-6分钟。 我发现您可以缓存文件: https://docs.travis-ci.com/user/caching/
但是我只想在存在缓存的情况下重新构建它(缓存过期并被删除)
执行此检查的最佳方法是什么?
答案 0 :(得分:1)
以bash播放:
if [ ! -f "/etc/bebebe" ]; then echo "The file does not exist"; fi