Reputation: 4921
How can is specify: language: none in .travis.yml? I don't specify a language, and get Ruby by default. i have no Ruby. I'm using C, C++, Ocaml, Python, and Felix. The build script is just "make".
Upvotes: 12
Views: 2870
Reputation: 3840
You can set language: minimal
or language: generic
which are not language specific.
From the documentation:
minimal
has some essential CI tools and Python:
generic
extends minimal
and additionally includes:
Upvotes: 12
Reputation: 3670
Start with setting language: c
https://docs.travis-ci.com/user/customizing-the-build/
https://docs.travis-ci.com/user/languages/c
You might run into problems as per https://github.com/travis-ci/travis-ci/issues/4090
Upvotes: 3