2016-06-07 91 views
8

我在https://travis-ci.org/建设的R包,并得到了一个错误:错误而在特拉维斯CI建设[R包”‘的tlmgr更新--self’失败

The command "tlmgr update --self" failed and exited with 25 during . 

特拉维斯CI输出的最后几行:

enter image description here

当我在RStudio呼吁devtools::check()本地在Windows 10中没有错误,也没有警告出现。

我发现tlmgr与LaTeX/TexLive软件包有关,并且在Travis CI文档"Building an R Project"中写道,如果需要小插件,可能需要安装一些LaTeX/TexLive。 (注:也有我的包中没有护身符呢。)

配置在.travis.yml文件:

language: R 
sudo: false 
cache: packages 
r_github_packages: 
    - jimhester/covr 
after_success: 
    - Rscript -e 'covr::codecov()' 

问题:什么问题的原因以及如何解决呢?

+2

我已发布问题 https://github.com/travis-ci/travis-ci/issues/6139 –

+0

是的,我也有同样的问题。 – air

+0

我3 - 感谢张贴这 –

回答