Skip to content

Commit bbcb85a

Browse files
committed
add linux/unix script for building docs in buildbox
svn path=/trunk/matplotlib/; revision=8060
1 parent 3df8dd1 commit bbcb85a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test/_buildbot_doc.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
set -e
3+
4+
TARGET=`pwd`/PYmpl
5+
TARGET_py=$TARGET/bin/python
6+
7+
$TARGET_py -c "import shutil,matplotlib; x=matplotlib.get_configdir(); shutil.rmtree(x)"
8+
9+
TARGET_easy_install=$TARGET/bin/easy_install
10+
11+
$TARGET_easy_install sphinx
12+
13+
cd doc
14+
15+
$TARGET_py make.py all

0 commit comments

Comments
 (0)