Questions tagged «aws-codebuild»

2
AWS CodeBuild本地缓存无法实际缓存?
我一直在尝试使AWS CodeBuild的本地缓存正常工作,而我一生都无法使用最基本的缓存。如讨论的那样,我的最终目标是缓存Gradle工件在这里。 但是因为无法正常工作,所以我尝试了一个更简单的测试,在该测试中,我尝试/root/foo使用counter.txt每个构建都递增的文件来缓存目录。我的期望是,如果我彼此之间在几分钟之内运行后续的构建,我会在日志中看到“ 2”,“ 3”等。但是实际情况是,尽管建立了符号链接,但是下一个构建版本却看不到前一个counter.txt文件,这对我来说表明有些问题了。 谁能确认他们的本地缓存实际上在CodeBuild中工作?我开始怀疑该功能当前是否损坏!还是我完全误解了该怎么办? buildspec.yml: version: 0.2 phases: install: runtime-versions: java: corretto8 build: commands: - pwd - ls -l /root/ - ls -l /root/foo/ - ./cache-test.sh - ls -l /root/ - ls -l /root/foo/ cache: paths: - '/root/foo/*' cache-test.sh: #!/bin/bash if [ -d "/root/foo" ]; then C=$(cat /root/foo/count.txt) …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.