From: adin Date: Wed, 5 Jul 2017 22:03:58 +0000 (-0300) Subject: Update CI with vanilla tools X-Git-Url: https://hydra-www.ietfng.org/gitweb/?a=commitdiff_plain;h=de68e3276e9e52999947bb1c85de9a9d8202f8a1;p=mcv-academic Update CI with vanilla tools --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 19837b5..7b3be95 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,13 +1,21 @@ +before_script: + # setup texmf + - TEXMFHOME=`kpsewhich -var-value TEXMFHOME` + - LOCALTEX=$TEXMFHOME/tex/latex + + - mkdir -p $LOCALTEX build: - image: adnrv/texlive-adntools + image: adnrv/texlive-tools script: + # link these files in the local texmf + - ln -s `pwd` $LOCALTEX/mcv-academic + # process and build our example - cd example - make all artifacts: paths: - - ./example/example-en.pdf - - ./example/example-es.pdf + - ./example/example-*.pdf tags: - docker