Skip to content

Commit 017cf0d

Browse files
committed
removing robodoc from travis.yml and build.sh.
1 parent 6a108ff commit 017cf0d

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ before_install:
4141
- if [[ $JLINT == [yY]* ]]; then curl -sL https://deb.nodesource.com/setup | sudo bash -x - ; fi
4242
- if [[ $CHECK_README_PROGS == [yY]* ]]; then wget http://people.sc.fsu.edu/~jburkardt/f_src/f90split/f90split.f90; fi
4343
- if [[ $DOCS == [yY]* ]]; then export DEPENDS="$DEPENDS exuberant-ctags"; fi
44-
- if [[ $DOCS == [yY]* ]]; then wget http://launchpadlibrarian.net/70968359/robodoc_4.99.41-1_amd64.deb; fi
4544
- ulimit -s unlimited
4645

4746
install:
@@ -50,7 +49,7 @@ install:
5049
- sudo ln -fs /usr/bin/gfortran-4.9 /usr/bin/gfortran && gfortran --version
5150
- sudo ln -fs /usr/bin/gcov-4.9 /usr/bin/gcov && gcov --version
5251
- if [[ $FoBiS == [yY]* ]]; then sudo -H pip install FoBiS.py && FoBiS.py --version; fi
53-
- if [[ $DOCS == [yY]* ]]; then sudo dpkg -i robodoc_4.99.41-1_amd64.deb && robodoc --version; fi
52+
- if [[ $DOCS == [yY]* ]]; then sudo -H pip install ford && ford --version; fi
5453
- if [[ $CHECK_README_PROGS == [yY]* ]]; then gfortran -o f90split f90split.f90 && ./f90split README.md && shopt -s extglob && for f in !(README|CONTRIBUTING).md; do mv $f src/tests/jf_test_${f%.md}.f90; done; rm f90split.f90 f90split; fi
5554

5655
script:

build.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,11 +290,9 @@ echo ""
290290
if [[ $JF_SKIP_DOCS != [yY]* ]]; then
291291
if hash ford 2>/dev/null; then
292292
echo "Building documentation..."
293-
#robodoc --rc ./robodoc.rc --src ${SRCDIR} --doc ${DOCDIR} --documenttitle ${PROJECTNAME}
294293
ford $FORDMD
295294
else
296-
#echo "ROBODoc not found! Cannot build documentation. ROBODoc can be installed from: http://www.xs4all.nl/~rfsber/Robo/"
297-
echo "ford not found! Install using: sudo pip install ford"
295+
echo "FORD not found! Install using: sudo pip install ford"
298296
fi
299297
else
300298
echo "Skip building documentation since \$JF_SKIP_DOCS has been set to ${JF_SKIP_DOCS}."

0 commit comments

Comments
 (0)