2014-05-31 09:38:01 +00:00
|
|
|
# Travis-CI Build for koreader
|
|
|
|
# see travis-ci.org for details
|
|
|
|
|
|
|
|
language: c
|
|
|
|
|
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
|
|
|
|
env:
|
|
|
|
- EMULATE_READER=1 USE_NO_CCACHE=1
|
|
|
|
|
2014-07-14 19:09:31 +00:00
|
|
|
before_install:
|
2015-03-31 14:38:59 +00:00
|
|
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
|
|
|
- sudo apt-get update -qq
|
|
|
|
- sudo apt-get install -qq g++-4.8
|
|
|
|
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
|
|
|
|
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 50
|
2014-07-14 19:09:31 +00:00
|
|
|
|
2014-05-31 09:38:01 +00:00
|
|
|
install:
|
2015-03-05 09:56:03 +00:00
|
|
|
# nasm for building libpng
|
2014-10-23 07:33:46 +00:00
|
|
|
- sudo apt-get install libsdl1.2-dev luarocks nasm
|
2015-03-05 09:56:03 +00:00
|
|
|
# install an older version of lua_cliargs for busted v1.10.0
|
|
|
|
- sudo luarocks install lua_cliargs 2.1-2
|
|
|
|
# recent versions of busted may cause some weird segmentation faults
|
|
|
|
- git clone https://github.com/Olivine-Labs/busted/
|
|
|
|
- cd busted && git checkout v1.10.0 && sudo luarocks make && cd ..
|
2015-03-03 10:09:44 +00:00
|
|
|
- sudo luarocks install luacov
|
2014-10-06 15:36:13 +00:00
|
|
|
- sudo luarocks install luacov-coveralls --server=http://rocks.moonscript.org/dev
|
2014-05-31 09:38:01 +00:00
|
|
|
|
|
|
|
script:
|
2014-10-06 14:28:55 +00:00
|
|
|
- make fetchthirdparty all
|
|
|
|
- sudo cp base/build/*/luajit /usr/bin/
|
2014-05-31 09:38:01 +00:00
|
|
|
- make testfront
|
2014-10-06 15:36:13 +00:00
|
|
|
|
|
|
|
after_success:
|
2014-12-01 06:38:32 +00:00
|
|
|
- make coverage
|
2014-10-06 15:36:13 +00:00
|
|
|
- cd koreader-*/koreader && luacov-coveralls -v
|