I'm getting this errors on Travis CI
http://pastebin.com/nni7CesQ
My YML file looks like this:
I know my source is ok because I compiled it in windows but I dont know why it fails here. Its 0.4
http://pastebin.com/nni7CesQ
My YML file looks like this:
Code:
language: cpp
compiler:
- gcc
before_install:
- sudo apt-get update
install:
- sudo apt-get install autoconf build-essential pkg-config libboost-dev libgmp3-dev libxml2-dev liblua5.1-0-dev libmysqlclient-dev libcrypto++-dev ccache libboost-filesystem-dev libboost-regex-dev libboost-system-dev libboost-thread-dev screen libssl-dev libluajit-5.1-dev
- sudo apt-get install liblua5.1-0 liblua5.1-0-dev liblua50 liblua50-dev liblualib50 liblualib50-dev lua50 lua5.1 liblua5.1-sql-mysql-dev liblua5.1-sql-sqlite3-dev
- wget http://www.lua.org/ftp/lua-5.1.4.tar.gz
- tar -xzvf lua*
- cd lua*
- sudo make linux
- sudo make install
- cd $TRAVIS_BUILD_DIR/src
script:
- sh autogen.sh
- ./configure --enable-mysql --enable-server-diag
- sh build.sh
I know my source is ok because I compiled it in windows but I dont know why it fails here. Its 0.4
Last edited: