Reputation: 1263
I have configured github repository for travis-ci, ref .travis.yml
It takes almost two minutes to build, travis is busy with the actions like this:
Is there a way to speed-up the process? I have read Migrating from legacy to container-based infrastructure but seems that simply "sudo: false" does not work. Can I do something else?
Upvotes: 0
Views: 94
Reputation: 4841
You can get rid of updating libc by moving to the trusty environment. The following will probably have least overhead:
sudo: false
dist: trusty
Upvotes: 1