forked from WORD-COINS/article-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
30 lines (30 loc) · 977 Bytes
/
.appveyor.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
28
29
30
image: Visual Studio 2015
environment:
PATH: '%PATH%;C:\texlive\2017\bin\win32'
cache:
- 'C:\texlive\2017\texmf-var\fonts\cache'
- 'C:\texlive\2017\texmf-var\luatex-cache'
artifacts:
- path: .\articles\hinagata\main-ptex.pdf
name: pTeX
- path: .\articles\hinagata\main-luatex.pdf
name: LuaTeX
- path: .\articles\back_cover\back_cover.pdf
name: BackCover
install:
- git submodule update --init
- choco install make
- curl -O https://raw.githubusercontent.com/y-yu/install-tex-appveyor/master/install-tex.sh
- bash ./install-tex.sh
- tlmgr install latexmk collection-luatex collection-langjapanese collection-fontsrecommended type1cm mdframed needspace newtx fontaxes boondox everyhook svn-prov framed
build_script:
- cd articles/hinagata
- make
- copy .\main.pdf .\main-ptex.pdf
- make clean
- set LATEXMKFLAG=-lualatex
- make
- copy .\main.pdf .\main-luatex.pdf
- cd ../back_cover
- make
- copy .\main.pdf .\back_cover.pdf