我正在尝试设置travis构建,但它失败并出现以下错误:
$ export PKG_TARBALL=$(Rscript -e 'pkg <- devtools::as.package("."); cat(paste0(pkg$package, "_", pkg$version, ".tar.gz"));')
Error in loadNamespace(name) : there is no package called ‘devtools’
我的包不需要devtools
来编译。
我已将devtools
添加到Suggests:
中的DESCRIPTION
,将其添加到.travis.yml
(见下文)无效。
language: r
sudo: required
# System dependencies for HTTP calling
apt_packages:
- libcurl4-openssl-dev
- libxml2-dev
r_binary_packages:
- devtools
install:
- Rscript -e 'install.packages("INLA", repos="http://www.math.ntnu.no/inla/R/stable")'
我做错了什么?
失败构建的日志文件:https://travis-ci.org/ThierryO/multimput/builds/97625211