summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Roger <darwiinc@live.fr>2017-09-10 03:01:22 +1100
committerChristophe Roger <darwiinc@live.fr>2017-09-10 03:01:22 +1100
commit031cd57ebcb1ca10dd1dbf60baf364c03e72ecc7 (patch)
tree782f00a8cd8b8c9a98e49f76a620bf5d134fc606
parent9d0baa09a1d06234d38100a6f97f597f66727c63 (diff)
downloadcv-031cd57ebcb1ca10dd1dbf60baf364c03e72ecc7.tar.gz
cv-031cd57ebcb1ca10dd1dbf60baf364c03e72ecc7.tar.bz2
cv-031cd57ebcb1ca10dd1dbf60baf364c03e72ecc7.tar.xz
cv-031cd57ebcb1ca10dd1dbf60baf364c03e72ecc7.zip
Add travis integration
-rw-r--r--.travis.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..7d32ede
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,17 @@
+sudo: required
+dist: trusty
+before_install:
+- sudo apt-get -qq update && sudo apt-get install -y --no-install-recommends latexmk
+ texlive-fonts-extra texlive-fonts-recommended texlive-latex-base texlive-latex-extra
+ texlive-latex-recommended
+script:
+- latexmk -cd -f -lualatex -interaction=nonstopmode -synctex=1 cv.tex
+deploy:
+ provider: releases
+ api_key:
+ secure: <key from travis CLI script>
+ file:
+ - resume.pdf
+ skip_cleanup: true
+ on:
+ tags: true \ No newline at end of file