Skip to content
Snippets Groups Projects
Select Git revision
  • fd3347b79f2b1cf5cacadfaf44154765b2ed0b93
  • master default protected
2 results

.gitlab-ci.yml

Blame
  • .gitlab-ci.yml 467 B
    stages:
      - build
      - deploy
      - cleanup
    
    image: sinex/docker-latex
    
    variables:
      LATEX: pdflatex
    
    build:
      stage: build
      script: make
      artifacts:
        name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
        when: always
        expire_in: 30 days
        paths:
        - build/
    
    pdf:
      stage: deploy
      script: make pdf
      artifacts:
        name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
        paths:
        - Thesis.pdf
        - Thesis.tar.gz
    
    cleanup:
      stage: cleanup
      script: make clean
      when: always