disable pdf builds for travis

This commit is contained in:
dessant 2016-05-30 12:33:45 +03:00
parent cd56460c06
commit 3409a812e4
1 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ install:
pip install --upgrade cython pillow nose coveralls;
fi;
if [ "${RUN}" == "docs" ]; then
sudo apt-get -y install texlive-full;
echo -e "sudo apt-get -y install texlive-full";
pip install --upgrade sphinxcontrib-blockdiag sphinxcontrib-seqdiag sphinxcontrib-actdiag sphinxcontrib-nwdiag;
fi;
fi;
@ -115,7 +115,7 @@ script:
fi;
if [ "${RUN}" == "docs" ]; then
make html;
make pdf;
echo -e "make pdf";
fi;
fi;
- if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
@ -153,8 +153,8 @@ after_success:
chmod 600 ~/.ssh/id_rsa;
echo -e "Host kivy.org\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config;
rsync --delete --force -r -e ssh ./doc/build/html/ kivy@kivy.org:~/kivy.org/docs/api-trunk/;
mv ./doc/build/latex/Kivy.pdf ./doc/build/latex/Kivy-latest.pdf;
rsync -e ssh ./doc/build/latex/Kivy-latest.pdf kivy@kivy.org:~/kivy.org/docs/pdf/Kivy-latest.pdf;
echo -e "mv ./doc/build/latex/Kivy.pdf ./doc/build/latex/Kivy-latest.pdf";
echo -e "rsync -e ssh ./doc/build/latex/Kivy-latest.pdf kivy@kivy.org:~/kivy.org/docs/pdf/Kivy-latest.pdf";
fi;
notifications: