• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Lua Strange compiling errors

dominique120

Science & Reason
Senator
Premium User
Joined
Jun 16, 2013
Messages
3,881
Solutions
3
Reaction score
1,046
Location
Númenor
I'm getting this errors on Travis CI

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:
Bump

I based the commands based on the tutorials by Stian and Elf but neither of them are around so I'm kind of stuck. I know Mark has TFS 1.0 set up on Travis CI but I dont want to contact him directly, I'm sure he has more important things to do.
 
Back
Top