Skip to content

Commit 3409a81

Browse files
author
dessant
committed
disable pdf builds for travis
1 parent cd56460 commit 3409a81

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ install:
4242
pip install --upgrade cython pillow nose coveralls;
4343
fi;
4444
if [ "${RUN}" == "docs" ]; then
45-
sudo apt-get -y install texlive-full;
45+
echo -e "sudo apt-get -y install texlive-full";
4646
pip install --upgrade sphinxcontrib-blockdiag sphinxcontrib-seqdiag sphinxcontrib-actdiag sphinxcontrib-nwdiag;
4747
fi;
4848
fi;
@@ -115,7 +115,7 @@ script:
115115
fi;
116116
if [ "${RUN}" == "docs" ]; then
117117
make html;
118-
make pdf;
118+
echo -e "make pdf";
119119
fi;
120120
fi;
121121
- if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
@@ -153,8 +153,8 @@ after_success:
153153
chmod 600 ~/.ssh/id_rsa;
154154
echo -e "Host kivy.org\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config;
155155
rsync --delete --force -r -e ssh ./doc/build/html/ [email protected]:~/kivy.org/docs/api-trunk/;
156-
mv ./doc/build/latex/Kivy.pdf ./doc/build/latex/Kivy-latest.pdf;
157-
rsync -e ssh ./doc/build/latex/Kivy-latest.pdf [email protected]:~/kivy.org/docs/pdf/Kivy-latest.pdf;
156+
echo -e "mv ./doc/build/latex/Kivy.pdf ./doc/build/latex/Kivy-latest.pdf";
157+
echo -e "rsync -e ssh ./doc/build/latex/Kivy-latest.pdf [email protected]:~/kivy.org/docs/pdf/Kivy-latest.pdf";
158158
fi;
159159

160160
notifications:

0 commit comments

Comments
 (0)