mirror of
https://github.com/koreader/koreader.git
synced 2025-12-13 20:36:53 +01:00
* enormous coding style update * update luajit-launcher All changes are formatting only except for: * new more correct pushd/popd style * keeps useful indentation * prevents execution of commands when pushd failed (cf. https://github.com/koalaman/shellcheck/wiki/SC2164 and https://github.com/koalaman/shellcheck/issues/863) ``` pushd some_dir && { command1 command2 } || exit popd ```
22 lines
989 B
Bash
Executable File
22 lines
989 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
# shellcheck source=/dev/null
|
|
source "${CI_DIR}/common.sh"
|
|
|
|
rm -rf "${HOME}/.luarocks"
|
|
mkdir "${HOME}/.luarocks"
|
|
cp "${TRAVIS_BUILD_DIR}/install/etc/luarocks/config.lua" "${HOME}/.luarocks/config.lua"
|
|
echo "wrap_bin_scripts = false" >>"$HOME/.luarocks/config.lua"
|
|
travis_retry luarocks --local install luafilesystem
|
|
# for verbose_print module
|
|
travis_retry luarocks --local install ansicolors
|
|
travis_retry luarocks --local install busted 2.0.rc12-1
|
|
#- mv -f $HOME/.luarocks/bin/busted_bootstrap $HOME/.luarocks/bin/busted
|
|
travis_retry luarocks --local install luacov
|
|
# luasec doesn't automatically detect 64-bit libs
|
|
travis_retry luarocks --local install luasec OPENSSL_LIBDIR=/usr/lib/x86_64-linux-gnu
|
|
travis_retry luarocks --local install luacov-coveralls --server=http://rocks.moonscript.org/dev
|
|
travis_retry luarocks --local install luacheck
|
|
travis_retry luarocks --local install lanes # for parallel luacheck
|