diff options
author | Björn Gustavsson <[email protected]> | 2017-03-07 10:11:25 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-03-08 07:33:20 +0100 |
commit | 3a40993d69a9079f7c890bc365a5f74c96287815 (patch) | |
tree | 8cfce4ba55944f47ebaacef6fa66b961ff70eb9f /.travis.yml | |
parent | 0fe6927bf752226270b191282375a031768d8be3 (diff) | |
download | otp-3a40993d69a9079f7c890bc365a5f74c96287815.tar.gz otp-3a40993d69a9079f7c890bc365a5f74c96287815.tar.bz2 otp-3a40993d69a9079f7c890bc365a5f74c96287815.zip |
Travis CI: Change the language to C
We never use the installed Erlang package. Setting the language
to C could also allow us to build on platforms that don't support
the Erlang language (e.g. osx).
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index baa55b383d..414107e10f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,10 @@ -language: erlang - -otp_release: - - 18.0 +language: c sudo: false +os: + - linux + addons: apt: packages: @@ -26,7 +26,6 @@ before_script: - export PATH=$ERL_TOP/bin:$PATH - export ERL_LIBS='' - export MAKEFLAGS=-j6 - - kerl_deactivate script: - ./scripts/build-otp |