maxim_ge
maxim_ge

Reputation: 1263

how to reduce travis build time?

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: Build screen

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

Answers (1)

joepd
joepd

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

Related Questions