-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
37 lines (33 loc) · 949 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
general:
branches:
only:
- CI_support
machine:
timezone:
Asia/Tokyo
services:
- docker
dependencies:
pre:
- docker pull ogajun/latex
- git config --global user.email [email protected]
- git config --global user.name fujiisoup
test:
override:
- wget http://mirrors.ctan.org/macros/latex/contrib/float/float.dtx
- mv float.dtx float.sty
- wget http://mirrors.ctan.org/macros/latex/contrib/fancyvrb/fancyvrb.dtx
- mv fancyvrb.dtx fancyvrb.sty
- wget http://ftp.jaist.ac.jp/pub/CTAN/macros/latex/contrib/comment/comment.sty
- wget http://mirrors.ctan.org/macros/latex/contrib/subfig/subfig.dtx
- mv subfig.dtx subfig.sty
- chmod +x latex_build.sh
- ./latex_build.sh textbook.tex
deployment:
release:
branch: master
commands:
- git checkout -b release
- git add --all :/
- git commit -m "[ci skip] build pdf"
- git push -f origin release