I’m using Travis in building an R package.
Not sure why exactly, but it started to run longer than usual and abort in the R CMD check log logs
step with a bunch of TeX-related messages, like the above or “Warning: Option `some_TeX_pkg’ has already been used”.
According to the Travis+R docu the following might have worked as well:
apt_packages:
- texinfo
or
before_install:
- tlmgr install
Is there any specific benefit of either installing a TeX Live package through apt
, or through tlmgr
?