On Wednesday, 09.03.2016 at 23:02, David Halls wrote: > > > > After discussion on the list and IRC I decided to go with a solution based > > purely on Travis as this has the least moving pieces and external > > dependencies[3]. > > > > For each build, packages are built as individual build jobs using the > > build matrix feature of Travis. The list of packages to build is specified > > in the env: section of .travis.yml. > > > > > Btw - is there something which needs > > sudo: required > > in the Travis builds (rather than sudo: false) ?
I wanted to use the newer Trusty build environment which among other things doesn't require installing a newer toolchain (even though binutils is at 2.24 which is marginal, but works). The Travis docs say: tl;dr - Using Trusty # If you just want to get started using our Trusty beta, then add the following to your .travis.yml. sudo: required dist: trusty
