Skip to content

Commit f9429f8

Browse files
committed
buildbot: debug documentation uploads
svn path=/trunk/matplotlib/; revision=8073
1 parent b24eda1 commit f9429f8

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

test/_buildbot_doc.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,31 @@
22
set -e
33

44
TARGET=`pwd`/PYmpl
5+
echo "activating virtual environment"
56
source $TARGET/bin/activate
67

8+
echo "removing MPL config dir"
79
python -c "import shutil,matplotlib; x=matplotlib.get_configdir(); shutil.rmtree(x)"
810

11+
echo "calling 'easy_install sphinx'"
912
easy_install sphinx
1013

14+
echo "calling 'cd doc'"
1115
cd doc
1216

17+
echo "calling 'python make.py clean'"
1318
python make.py clean
19+
20+
echo "calling 'python make.py all'"
1421
python make.py all
22+
23+
# SourceForce needs the below
24+
echo "configuring for upload to SourceForge"
25+
26+
echo "Options +Indexes" > build/html/.htaccess
27+
28+
chmod -R a+r build
29+
find build -type d | xargs chmod a+rx
30+
31+
echo "listing built files"
32+
find build

0 commit comments

Comments
 (0)