Why is 'after_success' stopped half way on OSX

I’m zipping my artefacts during ‘after_success’ however on OSX this stops during the zip process. Anybody ideas why?

adding: gazebosc.app/Contents/Resources/python/lib/python3.8/site-packages/pip/_vendor/requests/__version__.py (deflated 41%)
  adding: gazebosc.app/Contents/Resources/python/lib/python3.8/site-packages/pip/_vendor/requests/_internal_utils.py (deflated 51%)
  adding: gazebosc.app/Contents/Resources/python/lib/python3.8/site-packages/pip/_vendor/requests/adapters.py (deflated 76%)
  adding: gazebosc.app/Contents/Resour

You can see the full log here: Travis CI - Test and Deploy Your Code with Confidence

The travis.yml is here:

Thanks in advance!

Arnaud

Hello @sphaero,

Try and cleanup after_success a bit, for example:

if [[ "${TRAVIS_BRANCH}" == "master" ]]
then
 VERSION=  # whatever
else
VERSION=git describe --abbrev=4 --dirty --always --tags
fi

This is just giving you an example, since I noticed dirty. If you need me to create the entire script for you, I can. It would be cleaner I feel.