You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
827B

  1. ---
  2. stages:
  3. - typeset
  4. variables:
  5. GIT_SUBMODULE_STRATEGY: recursive
  6. final_report:
  7. stage: typeset
  8. image: registry.gitlab.com/silkeh/latex:latest
  9. script:
  10. - latexmk -xelatex report.tex
  11. - mkdir tmp
  12. - mv RichReportOutline.rro tmp/
  13. artifacts:
  14. paths:
  15. - report.pdf
  16. - tmp/RichReportOutline.rro
  17. only:
  18. refs:
  19. - web
  20. - branches
  21. - tags
  22. changes:
  23. - include/*.tex
  24. - include/references.bib
  25. - report.tex
  26. - content/*.tex
  27. rro:
  28. stage: typeset
  29. dependencies:
  30. - final_report
  31. image: registry.gitlab.com/silkeh/latex:latest
  32. script:
  33. - latexmk -xelatex include/RichReportOutline.tex
  34. artifacts:
  35. paths:
  36. - RichReportOutline.pdf
  37. only:
  38. refs:
  39. - web
  40. - branches
  41. - tags
  42. changes:
  43. - tmp/RichReportOutline.rro