-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
52 lines (44 loc) · 2.16 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
dist: trusty
sudo: false
#sudo: required
#sudo not required, but without this option dist was beeing ignored and ubuntu precise used.
env:
- DIR=Tex FILE=main
addons:
apt:
packages:
- texlive-fonts-recommended
- texlive-latex-extra
- texlive-fonts-extra
- cm-super
- dvipng
- texlive-latex-recommended
- texlive-lang-german
- texlive-science
- texlive-math-extra
- texlive-font-utils
- latex-xcolor
before_script:
#- wget -qO- https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs920/ghostscript-9.20-linux-x86_64.tgz|tar xvz --strip=1&&mv gs-920-linux_x86_64 gs&&chmod +x gs
- wget -qO- http://ftp.icm.edu.pl/packages/ghostscript/binaries/ghostscript-9.15-linux-x86_64.tgz|tar xvz --strip=1&&mv gs-915-linux_x86_64 gs&&chmod +x gs
- PATH=$PWD:$PATH
script:
- cd $DIR
- pdflatex -interaction=nonstopmode -halt-on-error $FILE
- bibtex $FILE
- pdflatex -interaction=nonstopmode -halt-on-error $FILE
- pdflatex -interaction=nonstopmode -halt-on-error $FILE
- gs -o compressed.pdf -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress -dColorConversionStrategy=/LeaveColorUnchanged -dDownsampleColorImages=false -dEmbedAllFonts=true -dCompressFonts=true -dSubsetFonts=false -dNOPAUSE -dBATCH $FILE.pdf
#&&mv compressed.pdf $FILE.pdf
deploy:
skip_cleanup: true
provider: releases
overwrite: true
api_key:
secure: T89M0704TLSCtQVF1dczBXn0z9vWZn7oBHmLlFjvXoEUzZ/FPwIdQVrwPKHeFCZeqB0oq4m5dzKn7xONAx0Xbn08S/yBqW8a0iD2SZwZAQZbQT0o8Dw63daXNtcuJiRiK4f7GFXkkgPqYBeYevAy5rj2hfu1V2TDrvtd3BG9XDtsQMIiiNjwrnt/ejFgEV1bCpuwVJKH3eeCtR8iqMrclxfKStkXW6ZWiD3zMvGPGQ8vRZAw80i05Tmexi5oAJAw2D+iaJYpk5YdgDon3YswJJW2RPW6gSoHkIUA+V/pqbTk2OQYQXfgl5ZkGssC71ecKgF+gnOfkGIRbQ/yLtZ9O70xfQrFCD4PtxnWy/GxGmNOdP7rK0MkDZIxfXATF7X5CH/L5sV6DsnVnbY7WCNnYPuYTk2UroA9QQmAs9hBnLOyBLxDwDxXDvJh7k8GjVWfgUPS1M375/36zphQqsEt/Kv60/S9CcgyqA1k2TEl/johVebsm4D0CIZvfE0Jbps+OT7eV3FDWd77UU49cLE0BFX1uLynPQVtvN/F4F8x2yeD9jfJcV3dzNN1b5vaoLfy5TmAcapSBDCzaYx9Q91nst4HT8eIHWo5XVX9l5G80c+KFat8usjIqy4hOS8MuGAYAJE6XL/ACYy3RwQaTTtTnC3mzA2Flkx+9jaMFQsNRwg=
file:
- $FILE.pdf
- compressed.pdf
on:
repo: fzimmermann89/bsc
tags: true