Skip to content
Snippets Groups Projects

improvements suggested by martin

Merged René Schöne requested to merge improvements-suggested-by-martin into main
1 file
+ 3
6
Compare changes
  • Side-by-side
  • Inline
  • 904f332c
    Simplify the build stage · 904f332c
    Martin Morgenstern authored
    * Reuse the build command defined in Makefile (via `make`)
    * Store latexmk's build log as an artifact (the stdout of latexmk
      is saved anyway by GitLab)
+ 3
6
@@ -14,12 +14,9 @@ build:
artifacts:
when: always
paths:
- $FILEDIR/$FILENAME.pdf
- $FILEDIR/build_$FILENAME.log
script:
- cd "$FILEDIR"
- latexmk -pdf "$FILENAME.tex" 2>&1 | tee build_"$FILENAME".log
- 'grep -v "LaTeX Warning: There were undefined references." build_"$FILENAME".log'
- thesis.pdf
- thesis.log
script: make
diff:
stage: diff
Loading