-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
23 lines (21 loc) · 934 Bytes
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
##
## Build with CircleCI
##
## https://circleci.com/gh/optimizationBenchmarking/documentation-intro-slides
#
machine:
# Install the newest version of texlive.
pre:
- sudo add-apt-repository -y ppa:jonathonf/texlive-2016
- sudo apt-get -q -y update
- sudo apt-get -q -y --no-install-recommends install fonts-arphic-bkai00mp fonts-arphic-bsmi00lp fonts-arphic-gbsn00lp fonts-arphic-gkai00mp ko.tex-extra-hlfont latex-cjk-all lmodern prosper ps2eps tex-gyre texlive texlive-lang-chinese texlive-lang-cjk texlive-extra-utils texlive-lang-japanese texlive-lang-korean texlive-luatex texlive-science texlive-xetex
# We do nothing here.
dependencies:
override:
- echo "Nothing"
# We set a high timeout to prevent the test from being
# terminated unexpectedly.
test:
override:
- ./scripts/mintex.sh intro-slides xelatex pdflatex lualatex
- cp "intro-slides.pdf" "$CIRCLE_ARTIFACTS"