Yttrill
Yttrill

Reputation: 4921

No Language: Travis CI

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

Answers (2)

Andre Miras
Andre Miras

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:

  • 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

Upvotes: 12

Related Questions