mirror of
https://github.com/progval/Limnoria.git
synced 2025-04-25 20:41:18 -05:00
29 lines
828 B
Bash
Executable File
29 lines
828 B
Bash
Executable File
#!/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
|