Hello,
I have the following script section in my .travis.yaml
file:
script:
- verify-linter.sh &
- build_all.sh &
- build-image.sh &
- build-installer.sh &
- export PYTHONPATH=. && create_vms.py &
- wait $(jobs -p)
- run-tests.sh
Issue 1: For some reason the output of my create_vms.py
script doesn’t get displayed in the build logs. If I debug the travis build running travis_run_script
, the output gets displayed. If I directly run the script from a travis debug session the output gets displayed.
Issue 2: That command (create_vms.py
) fails (for non important reasons) and my wait $(jobs -p)
command hangs, leading to 10 minutes of no output leading to travis ending the build. I have no idea why this happens.
Any input is appreciated.