mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
12 lines
321 B
Bash
Executable File
12 lines
321 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
source "${CI_DIR}/common.sh"
|
|
|
|
travis_retry make fetchthirdparty
|
|
make all
|
|
retry_cmd 6 make testfront
|
|
set +o pipefail
|
|
luajit $(which luacheck) --no-color -q frontend | tee ./luacheck.out
|
|
test $(grep Total ./luacheck.out | awk '{print $2}') -le 54
|