Merge b04d638f0947d8fb2903d09410a94f723f4cc130 into 572ca99ce248369d9b66b62f6363ddca00b8b9af
This commit is contained in:
commit
5ca6a7d983
36
.travis.yml
36
.travis.yml
@ -13,8 +13,40 @@ branches:
|
|||||||
install:
|
install:
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
# Install TeXLive
|
# Install TeXLive
|
||||||
- curl -sSL https://gist.githubusercontent.com/seisman/ad00252a9f03fc644146a11e6983d9c5/raw/install-tl.sh -o install-tl.sh
|
# steps copied from https://gist.githubusercontent.com/seisman/ad00252a9f03fc644146a11e6983d9c5/raw/install-tl.sh ::
|
||||||
- sudo bash install-tl.sh
|
- REMOTE="http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet"
|
||||||
|
|
||||||
|
- mkdir -p /tmp/install-texlive
|
||||||
|
- cd /tmp/install-texlive/
|
||||||
|
|
||||||
|
- curl -sSL $REMOTE/install-tl-unx.tar.gz | tar -xz -C ./ --strip-components=1
|
||||||
|
|
||||||
|
- |
|
||||||
|
cat << EOF > texlive.profile
|
||||||
|
selected_scheme scheme-basic
|
||||||
|
TEXMFHOME ~/.texmf
|
||||||
|
collection-basic 1
|
||||||
|
collection-fontsrecommended 1
|
||||||
|
collection-langchinese 1
|
||||||
|
collection-latex 1
|
||||||
|
collection-latexrecommended 1
|
||||||
|
collection-xetex 1
|
||||||
|
option_doc 0
|
||||||
|
option_src 0
|
||||||
|
EOF
|
||||||
|
|
||||||
|
- PLATFORM=$(./install-tl --print-platform)
|
||||||
|
- TEXLIVE=$(./install-tl --version | egrep -o "20..")
|
||||||
|
- TEXBIN="/usr/local/texlive/${TEXLIVE}/bin/${PLATFORM}"
|
||||||
|
- ./install-tl -q -profile texlive.profile -repository $REMOTE
|
||||||
|
|
||||||
|
- echo PATH=$PATH:$TEXBIN
|
||||||
|
- echo 'export PATH=$PATH':$TEXBIN >> ~/.bash_profile
|
||||||
|
- $TEXBIN/tlmgr install tabulary latexmk ulem environ trimspaces titlesec \
|
||||||
|
varwidth framed threeparttable wrapfig upquote capt-of \
|
||||||
|
multirow eqparbox needspace fncychap
|
||||||
|
|
||||||
|
|
||||||
- source ~/.bash_profile
|
- source ~/.bash_profile
|
||||||
- export TLMGR=`which tlmgr`
|
- export TLMGR=`which tlmgr`
|
||||||
# update texlive
|
# update texlive
|
||||||
|
Loading…
x
Reference in New Issue
Block a user