12

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".

Yttrill
  • 4,725
  • 1
  • 20
  • 29

2 Answers2

12

You can set language: minimal or language: generic which are not language specific.

From the documentation:

minimal has some essential CI tools and Python:

  • version control tools
  • essential build tools such as gcc and make
  • network tools such as curl and essential
  • Docker
  • python

generic extends minimal and additionally includes:

  • databases and services
  • go
  • jvm
  • node_js
  • php
  • ruby
Farshid T
  • 2,073
  • 1
  • 19
  • 16
Andre Miras
  • 3,580
  • 44
  • 47
3

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

gliptak
  • 3,592
  • 2
  • 29
  • 61