Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No Language: Travis CI

Tags:

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

like image 758
Yttrill Avatar asked Jun 29 '15 13:06

Yttrill


1 Answers

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
like image 153
Andre Miras Avatar answered Oct 26 '22 09:10

Andre Miras