No Language: Travis CI

How can it indicate: language: none in .travis.yml? I do not specify the language and get Ruby by default. I do not have Ruby. I use C, C ++, Ocaml, Python and Felix. The script line is just "make".

+8
source share
2 answers

You can set language: minimal or language: generic which is language independent.

From the documentation :

minimal has some basic CI and Python tools:

  • version control tools
  • basic build tools like gcc and make
  • network tools like curl and essential
  • docker
  • python

generic extends minimal and additionally includes:

  • databases and services
  • go
  • Jvm
  • node_js
  • Php
  • Ruby
+4
source

All Articles