summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2015-12-17 02:32:11 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2015-12-17 02:36:48 +0000
commit64dcd50b9953cad388db44f772c7dbee1cb34b7d (patch)
tree1933ad0d78df0163a41dc009368c45204512bd2c /.travis.yml
parent9acf18939c5752d0b57add9b952ad5b663f4f869 (diff)
downloadswig-64dcd50b9953cad388db44f772c7dbee1cb34b7d.tar.gz
Remove dependency on yodl tools and remove ccache-swig man page
Use the CCache.html docs instead of the ccache-swig man page. The yodl2man and yodl2html tools are no longer used and so SWIG no longer has a dependency on these packages which were required when building from git. Closes #286 Closes #128
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 27eed5d6e..225e4abb9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -201,8 +201,7 @@ script:
- if test -z "$SWIGLANG"; then make -s $SWIGJOBS check-ccache; fi
- if test -z "$SWIGLANG"; then make -s $SWIGJOBS check-errors-test-suite; fi
- echo 'Installing...' && echo -en 'travis_fold:start:script.2\\r'
- # make install doesn't work on os x due to missing yodl2man
- - if test -z "$SWIGLANG" -a "$TRAVIS_OS_NAME" = "linux"; then sudo make -s install && swig -version && ccache-swig -V; fi
+ - if test -z "$SWIGLANG"; then sudo make -s install && swig -version && ccache-swig -V; fi
- echo -en 'travis_fold:end:script.2\\r'
# Stricter compile flags for examples. Various headers and SWIG generated code prevents full use of -pedantic.
- if test -n "$SWIGLANG"; then cflags=$($TRAVIS_BUILD_DIR/Tools/testflags.py --language $SWIGLANG --cflags --std=$CSTD --compiler=$CC) && echo $cflags; fi