forked from SquareBracketAssociates/PharoByExample80
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (26 loc) · 710 Bytes
/
.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
language: smalltalk
sudo: false
os:
- linux
smalltalk:
- Pharo-stable
env:
global:
- PILLAR_RELEASE=v8.0.2
- PATH="$HOME/texlive/bin/x86_64-linux:$HOME/pillar/build:$PATH"
install:
- git clone --branch "$PILLAR_RELEASE" https://github.com/pillar-markup/pillar.git "$HOME/pillar"
- ( cd $HOME/pillar; ./scripts/build.sh; )
- $HOME/pillar/scripts/ci/install-texlive
- ./_support/latex/ensure-deps.sh
script:
- pillar build pdf
after_failure:
- cat _result/pdf/index.log
after_success:
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
- mv _result/pdf/index.pdf PBE8-wip.pdf
- bash upload.sh PBE8-wip.pdf
branches:
except:
- /^(?i:continuous)$/