From 2cb2c932c565070de8406959c876048370a9f0f0 Mon Sep 17 00:00:00 2001 From: Marc Tamsky Date: Tue, 27 Feb 2018 17:21:04 -0800 Subject: [PATCH 1/2] debug install-tl.sh script --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dccb93d..3469072 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ install: - pip install -r requirements.txt # Install TeXLive - curl -sSL https://gist.githubusercontent.com/seisman/ad00252a9f03fc644146a11e6983d9c5/raw/install-tl.sh -o install-tl.sh - - sudo bash install-tl.sh + - sudo bash -x install-tl.sh - source ~/.bash_profile - export TLMGR=`which tlmgr` # update texlive From b04d638f0947d8fb2903d09410a94f723f4cc130 Mon Sep 17 00:00:00 2001 From: Marc Tamsky Date: Wed, 28 Feb 2018 16:02:10 -0800 Subject: [PATCH 2/2] inline gist --- .travis.yml | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3469072..a352454 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,8 +13,40 @@ branches: install: - pip install -r requirements.txt # Install TeXLive - - curl -sSL https://gist.githubusercontent.com/seisman/ad00252a9f03fc644146a11e6983d9c5/raw/install-tl.sh -o install-tl.sh - - sudo bash -x install-tl.sh + # steps copied from https://gist.githubusercontent.com/seisman/ad00252a9f03fc644146a11e6983d9c5/raw/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 - export TLMGR=`which tlmgr` # update texlive