From a6f8036aca63897eddc420d0716c3426f520a881 Mon Sep 17 00:00:00 2001 From: Carl Mai <carl.mai@tu-dresden.de> Date: Mon, 23 Jul 2018 12:57:03 +0200 Subject: [PATCH] fix ci yml --- .gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb665c5..4957b10 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,8 +9,6 @@ stages: - build - diff - - build: stage: build tags: @@ -22,7 +20,7 @@ build: script: - cd "$FILEDIR" - latexmk -pdf "$FILENAME.tex" 2>&1 | tee build_"$FILENAME".log - - grep -v "LaTeX Warning: There were undefined references." build_"$FILENAME".log + - 'grep -v "LaTeX Warning: There were undefined references." build_"$FILENAME".log' diff: stage: diff @@ -33,7 +31,7 @@ diff: - $FILEDIR/difftag_$FILENAME.pdf - $FILEDIR/diffcommit_$FILENAME.pdf script: - - cd $FILEDIR + - cd "$FILEDIR" - LAST_TAG=$(git describe --abbrev=0 --tags HEAD~1) - wget https://gitlab.com/git-latexdiff/git-latexdiff/raw/ef53cddc761ce2d278ba5016d17828cf63e30af5/git-latexdiff - if [ "$LAST_TAG" ] ; then -- GitLab