Limnoria/.travis.runonce.bash

29 lines
828 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env bash
# This script does the things that we want Travis to do only once, not in
# every possible build.
# Set environment
# Which branch are we on?
branch=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p')
# Check translations
sandbox/check_trans.py plugins/
sandbox/check_trans.py --core
msgcheck locales/*.po
msgcheck plugins/*/*/*.po
# Check documentation
cd docs
# Add -W to spinx-build when the documentation doesn't error!
sphinx-build -n -b html -d _build/doctrees . _build/html
cd ..
# Do these things only on testing or master.
if [[ "$branch" = "master" || "$branch" = "testing" ]]; then
# Notify read the docs
curl -X POST http://readthedocs.org/build/limnoria
# Add other things which we want to do here, before the fi.
else
echo "$branch is not master nor testing, doing nothing."
fi