aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 2c9634c5f512f5d07ed818ade326ccd6b93e1775 (plain)
  1. image: 
  2. name: pandoc/latex:latest
  3. entrypoint: ["/bin/sh", "-c"]
  4. stages:
  5. - build
  6. build:
  7. stage: build
  8. script:
  9. - tlmgr update --self
  10. - tlmgr install footmisc
  11. - pandoc --version
  12. - mkdir build
  13. - chmod +x ./build.sh
  14. - ./build.sh
  15. artifacts:
  16. paths:
  17. - "build"