Skip to content
Snippets Groups Projects
.gitlab-ci.yml 399 B
Newer Older
  stage: build
  image: texlive/texlive:latest
  - apt-get update && apt-get install fonts-firacode
  - cd ${FOLDER}
  - lualatex ${FILE}
  - biber ${FILE}
  - lualatex ${FILE}
  artifacts:
    paths:
    - "**/*.pdf"
  parallel:
    matrix:
    # List all to-be-built projects here
    - FOLDER: "proposal"
      FILE: "proposal"