-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
860 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
language: generic | ||
|
||
# Dependency of the minted package and install fonts | ||
before_install: | ||
- sudo apt-get install python-pygments | ||
- mkdir $HOME/.fonts | ||
- cp -a $TRAVIS_BUILD_DIR/src/fonts/. $HOME/.fonts/ | ||
- fc-cache -f -v | ||
|
||
install: | ||
- source ./texlive/texlive_install.sh | ||
|
||
cache: | ||
directories: | ||
- /tmp/texlive | ||
- $HOME/.texlive | ||
|
||
# Change working directory so including files will work | ||
before_script: cd $TRAVIS_BUILD_DIR/src/ | ||
|
||
script: | ||
# Texliveonfly will download packages automatically | ||
- texliveonfly --compiler=xelatex cv.tex | ||
- texliveonfly --compiler=xelatex letter.tex | ||
# Build CV | ||
- latexmk --pdf -pdflatex="xelatex --shell-escape" cv.tex | ||
# Build cover letter | ||
- latexmk --pdf -pdflatex="xelatex --shell-escape" letter.tex | ||
|
||
# You can use latexmk to automatically handle bibtex and references (recommended) | ||
# - latexmk -pdf main.tex | ||
# But you could use any other compiler as well instead of latexmk. Example: | ||
# - pdflatex main.tex | ||
# - bibtex main | ||
# - pdflatex main.tex | ||
# - pdflatex main.tex # Compile twice to fix references | ||
|
||
# You can also pass arguments to texliveonfly: | ||
# - texliveonfly --arguments='-shell-escape' main.tex | ||
|
||
notifications: | ||
email: false | ||
|
||
deploy: | ||
provider: releases | ||
skip_cleanup: true | ||
draft: true | ||
api_key: | ||
secure: lOYS1AjQo4tmzOaPNJLz1ypdRo7mH3xdq1xu/8dowjKPbVg2gyjudbNBpZTDXDZ7H1u9NApz+37OV9WOl2Ze+iCkEXsOvemESPJRctTvaUE5tGJPsuPm2p/9mIFbtc0bUz1FgUXToQlsTgLMq9vE/MvOvAe4Rr7FgfgyURUzOLh6cfx5b/HxtI7judc3sed9eCby6pQTy9obtAMl2gn8hD8Yw795/Pu3TUiEZwa/faTCS0uHUFEx1fg34QsYfjr4iRwtfk/JnIgD9Kq2LM8+pnOyC+JZ94LyopHYEbLfTb4IwppN+5QSDKDi9N+H0+yKBwV13XfaaJbYpVNng6o7XvuDOdj9GA/rl/968Xl580iu/pDspJRQcmZlZjnEonv4AqedchG2jo6DdOmbb4olnW5JaM4lSBBdL/UYiBdBTq19gRc88GAiZc6N5pydQGG7rs5tVARQTF3Ig+SD21sN4Qf31Bh6nrNbAPTRl4Pu+RAWWIcuzMpL18ask/0wz0V9MgKGrwxEYretqWEdN+wxGeOOSLdT5O3h0St9wISXwDgWc+cF/A+UCxlDT1SaLehxR7VHGBo0ZRLeKdDHEnVBeB5294I8fQje3F6DN603DXw20m9S6yflAQl8mlcwg/5g38vpHv5mdX7m0Q0iUDbUrrt8JMrKuMvAz0NvILd3WNg= | ||
file: | ||
- "./cv.pdf" | ||
- "./letter.pdf" | ||
on: | ||
repo: chrisleaman/cv | ||
all_branches: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
\section{contact} | ||
\begin{adjustwidth}{2cm}{} | ||
\vspace{-2\parskip} | ||
\begin{multicols}{3} | ||
Email: \href{mailto:chris@leaman.io}{chris@leaman.io}\\ | ||
\\ | ||
\\ | ||
\\ | ||
\\ | ||
\\ | ||
\end{multicols} | ||
\vspace{-5\parskip} | ||
\end{adjustwidth} |
Oops, something went wrong.