-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis.yml
27 lines (27 loc) · 1.05 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
language: minimal
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
- sudo apt-get install -y --no-install-recommends texlive-latex-extra texlive-latex-recommended texlive-luatex texlive-xetex
- sudo apt-get install -y --no-install-recommends texlive-pictures texlive-lang-french lmodern fonts-font-awesome
script:
- latexmk -cd -f -lualatex -interaction=nonstopmode -synctex=1 cv.tex
deploy:
# Also deploy the built files into the master branch (from development).
- provider: pages
skip_cleanup: true
keep_history: true
# Set in the settings page of your repository, as a secure variable
github_token: $ghtoken
target_branch: master
on:
branch: development
# Deploy to gh-pages
- provider: pages
skip_cleanup: true
# Set in the settings page of your repository, as a secure variable
github_token: $ghtoken
keep_history: true
target_branch: gh-pages
on:
branch: development