Skip to content
Snippets Groups Projects
.gitlab-ci.yml 292 B
Newer Older
  NAME: "proposal"
  stage: build
  image: texlive/texlive:latest
  - apt-get update && apt-get install fonts-firacode
  - cd $NAME
  - lualatex $NAME
  - biber $NAME
  - lualatex $NAME
  artifacts:
    paths:
    - "**/*.pdf"
    - "**/*.log"