I use and love the continuous integration of Travis CI for an open source project on GitHub. I like fast container builds, so I install sudo: falseglobally on my script.
However, in one specific assembly of my build matrix, I want to deploy my docker container, so I think I need it sudo: truehere. Does this mean that I need to use sudo: truefor all my collections or is there some way around this? I would like to install sudo: truefor only one assembly. Alternatively, is it possible to have multiple scripts .travis.ymlin the same GitHub repository?
source
share