Closed
Description
As pointed out as a suggestion in #133, we could shorten and improve travis.yml
, by moving some instructions into .sh
(or .bat
) files.
This has already been done for the Linux jobs, see linux.sh
. It is executed with
before_install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then chmod +x ./.travis/osx.sh; sh ./.travis/osx.sh; fi
We should to that for both osx and windows.