summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2021-02-20 10:22:15 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2021-02-20 14:49:52 +0000
commitb58e44700a1b41365fe2829879143fd5c9f9e29d (patch)
tree3d78a84d78b0a76f01b09f3a0441e2685c0b4301 /.travis.yml
parentf7b5fea09f7fc9376dcb4774d8e36f5e370cad69 (diff)
downloadswig-b58e44700a1b41365fe2829879143fd5c9f9e29d.tar.gz
Travis: skip make check-maintainer-clean on osx
Often fails with: rm: Resource temporarily unavailable
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index c282768f4..95a98d41e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -459,5 +459,6 @@ script:
- if test -n "$SWIGLANG"; then make $SWIGJOBS check-$SWIGLANG-examples CFLAGS="$cflags" CXXFLAGS="$cxxflags"; fi
- if test -n "$SWIGLANG"; then make $SWIGJOBS check-$SWIGLANG-test-suite CFLAGS="$cflags" CXXFLAGS="$cxxflags"; fi
- echo 'Cleaning...' && echo -en 'travis_fold:start:script.3\\r'
- - make check-maintainer-clean && ../../configure $CONFIGOPTS
+ # Skip on osx as often fails with: rm: Resource temporarily unavailable
+ - if test "$TRAVIS_OS_NAME" != "osx"; then make check-maintainer-clean && ../../configure $CONFIGOPTS; fi
- echo -en 'travis_fold:end:script.3\\r'