LAAG1/.circleci/config.yml

21 lines
519 B
YAML
Raw Normal View History

2017-11-24 18:38:55 +01:00
version: 2
jobs:
2017-11-24 18:43:05 +01:00
build:
docker:
- image: paperist/alpine-texlive-ja
steps:
2017-11-24 18:52:01 +01:00
- run:
name: Install Dependencies
command: |
tlmgr install ulem latexdiff
2017-11-24 18:43:05 +01:00
- checkout
- run: cp .latexmkrc ~/.latexmkrc
- run:
name: Generating current version
command: |
latexmk Lineare_Algebra.tex;
mkdir /tmp/artifacts;
cp Lineare_Algebra.pdf /tmp/artifacts/
- store_artifacts:
path: /tmp/artifacts