Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keplerproject/luafilesystem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Melnichuk <mimir@newmail.ru>2014-08-14 08:36:58 +0400
committerAlexey Melnichuk <mimir@newmail.ru>2014-08-14 08:41:04 +0400
commitc0552d59a4b82b7ee8cfaf0c08e1b7416fea61d1 (patch)
tree14b3a0e39f2ed0414f271e8246bb9d6f37d3e6ef
parentebe20b66f095c8f89a5c1d16c5bd3cc98dad29ee (diff)
Add. Travis files.
-rw-r--r--.travis.yml32
-rw-r--r--.travis/platform.sh15
-rw-r--r--.travis/setup_lua.sh92
3 files changed, 139 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..316af68
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,32 @@
+language: c
+
+env:
+ global:
+ - LUAROCKS=2.2.0-rc1
+ matrix:
+ - LUA=lua5.1
+ - LUA=lua5.2
+ - LUA=luajit
+
+branches:
+ only:
+ - master
+
+before_install:
+ - bash .travis/setup_lua.sh
+ - sudo pip install cpp-coveralls
+
+install:
+ - sudo luarocks make rockspecs/luafilesystem-cvs-2.rockspec CFLAGS="-O2 -fPIC -ftest-coverage -fprofile-arcs" LIBFLAG="-shared --coverage"
+
+script:
+ - cd tests
+ - sudo lua test.lua
+
+after_success:
+ - coveralls -b .. -r ..
+
+notifications:
+ email:
+ on_success: change
+ on_failure: always
diff --git a/.travis/platform.sh b/.travis/platform.sh
new file mode 100644
index 0000000..4a3af0d
--- /dev/null
+++ b/.travis/platform.sh
@@ -0,0 +1,15 @@
+if [ -z "$PLATFORM" ]; then
+ PLATFORM=$TRAVIS_OS_NAME;
+fi
+
+if [ "$PLATFORM" == "osx" ]; then
+ PLATFORM="macosx";
+fi
+
+if [ -z "$PLATFORM" ]; then
+ if [ "$(uname)" == "Linux" ]; then
+ PLATFORM="linux";
+ else
+ PLATFORM="macosx";
+ fi;
+fi
diff --git a/.travis/setup_lua.sh b/.travis/setup_lua.sh
new file mode 100644
index 0000000..1ead166
--- /dev/null
+++ b/.travis/setup_lua.sh
@@ -0,0 +1,92 @@
+#! /bin/bash
+
+# A script for setting up environment for travis-ci testing.
+# Sets up Lua and Luarocks.
+# LUA must be "lua5.1", "lua5.2" or "luajit".
+# luajit2.0 - master v2.0
+# luajit2.1 - master v2.1
+
+LUAJIT_BASE="LuaJIT-2.0.3"
+
+source .travis/platform.sh
+
+LUAJIT="no"
+
+if [ "$PLATFORM" == "macosx" ]; then
+ if [ "$LUA" == "luajit" ]; then
+ LUAJIT="yes";
+ fi
+ if [ "$LUA" == "luajit2.0" ]; then
+ LUAJIT="yes";
+ fi
+ if [ "$LUA" == "luajit2.1" ]; then
+ LUAJIT="yes";
+ fi;
+elif [ "$(expr substr $LUA 1 6)" == "luajit" ]; then
+ LUAJIT="yes";
+fi
+
+if [ "$LUAJIT" == "yes" ]; then
+
+ if [ "$LUA" == "luajit" ]; then
+ curl http://luajit.org/download/$LUAJIT_BASE.tar.gz | tar xz;
+ else
+ git clone http://luajit.org/git/luajit-2.0.git $LUAJIT_BASE;
+ fi
+
+ cd $LUAJIT_BASE
+
+ if [ "$LUA" == "luajit2.1" ]; then
+ git checkout v2.1;
+ fi
+
+ make && sudo make install
+
+ if [ "$LUA" == "luajit2.1" ]; then
+ sudo ln -s /usr/local/bin/luajit-2.1.0-alpha /usr/local/bin/luajit
+ sudo ln -s /usr/local/bin/luajit /usr/local/bin/lua;
+ else
+ sudo ln -s /usr/local/bin/luajit /usr/local/bin/lua;
+ fi;
+
+else
+ if [ "$LUA" == "lua5.1" ]; then
+ curl http://www.lua.org/ftp/lua-5.1.5.tar.gz | tar xz
+ cd lua-5.1.5;
+ elif [ "$LUA" == "lua5.2" ]; then
+ curl http://www.lua.org/ftp/lua-5.2.3.tar.gz | tar xz
+ cd lua-5.2.3;
+ fi
+ sudo make $PLATFORM install;
+fi
+
+cd $TRAVIS_BUILD_DIR
+
+LUAROCKS_BASE=luarocks-$LUAROCKS
+git clone https://github.com/keplerproject/luarocks.git $LUAROCKS_BASE
+cd $LUAROCKS_BASE
+git checkout v$LUAROCKS
+
+if [ "$LUA" == "luajit" ]; then
+ ./configure --lua-suffix=jit --with-lua-include=/usr/local/include/luajit-2.0;
+elif [ "$LUA" == "luajit2.0" ]; then
+ ./configure --lua-suffix=jit --with-lua-include=/usr/local/include/luajit-2.0;
+elif [ "$LUA" == "luajit2.1" ]; then
+ ./configure --lua-suffix=jit --with-lua-include=/usr/local/include/luajit-2.1;
+else
+ ./configure;
+fi
+
+make build && sudo make install
+
+cd $TRAVIS_BUILD_DIR
+
+rm -rf $LUAROCKS_BASE
+
+if [ "$LUAJIT" == "yes" ]; then
+ rm -rf $LUAJIT_BASE;
+elif [ "$LUA" == "lua5.1" ]; then
+ rm -rf lua-5.1.5;
+elif [ "$LUA" == "lua5.2" ]; then
+ rm -rf lua-5.2.3;
+fi