version: 2.4.0.{build}-test shallow_clone: true environment: LUAROCKS_VER: 2.4.0 matrix: - LUA: "lua 5.1" COMPILER: "vs" - LUA: "lua 5.1" COMPILER: "mingw" - LUA: "lua 5.2" COMPILER: "vs" - LUA: "lua 5.2" COMPILER: "mingw" - LUA: "lua 5.3" COMPILER: "vs" - LUA: "lua 5.3" COMPILER: "mingw" - LUA: "luajit 2.0" COMPILER: "vs" - LUA: "luajit 2.0" COMPILER: "mingw" - LUA: "luajit 2.1" COMPILER: "vs" - LUA: "luajit 2.1" COMPILER: "mingw" init: # Setup Lua development/build environment # Make VS 2015 command line tools available - call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %platform% # Add MinGW compiler to the path - set PATH=C:\MinGW\bin;%PATH% before_build: - set PATH=C:\Python27\Scripts;%PATH% # Add directory containing 'pip' to PATH - pip install hererocks - hererocks env --%LUA% -rlatest --target=%COMPILER% - call env\bin\activate build_script: - luarocks install busted 1> NUL 2> NUL test_script: - busted --lpath=.//?.lua --exclude-tags=ssh,unix,mock -Xhelper appveyor,%COMPILER% after_test: - if "%LUA%"=="lua 5.1" (luarocks show bit32 || luarocks install bit32) - luarocks install luacov - pip install codecov - luacov -c test/luacov.config - cd test && codecov