有没有办法缓存我从bundler获得的依赖项(使用bundle install)?我知道我可以在circle.yml中使用cache_dependencies命令,但我不确定传递给它的路径。
作为参考,在TravisCI中,您可以使用
缓存bundler import urllib
import re
symbolslist = ["AAPL", "SPY", "GOOG","NFLX"]
for symbol in symbolslist:
url = "http://finance.yahoo.com/q?s=%s& ql=1"%(symbol)
htmlfile = urllib.urlopen(url)
htmltext = htmlfile.read()
regex = <span id="yfs_184_%s">(.+?)</span> %(symbol.lower())
pattern = re.compile(regex)
price = re.findall(pattern, htmltext)
print price
答案 0 :(得分:2)
默认情况下,CircleCI将缓存if(myComboBox.selection() == myEnumType::Value1) {
//action
}
和vendor/bundle
,因此,如果您让它为您运行bundler,则应自动缓存所有内容。