27

In my project I have a few git submodules, however those aren't actual build dependencies and do take some extra time to get pulled in, literarily doubling or tripling the build time.

Is there any way of telling Travis to skip this useless step?

errordeveloper
  • 6,716
  • 6
  • 41
  • 54

2 Answers2

39

In case if somebody still looks for this, in .travis.yml:

git:
  submodules: false
tenbits
  • 7,568
  • 5
  • 34
  • 53
1

At the moment not, please file an issue with travis-build.

Konstantin Haase
  • 25,687
  • 2
  • 57
  • 59