mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
9d39f11f59
* Travis: speed up by caching base and running luacheck earlier * ignore bin and install for git status change detection * skip coverage except on official master branch. It adds 3 whole minutes and does nothing to prevent regressions * also cache ~/.luarocks. It evens out but would generally prevent remote timeout shenenigans * remove base cache dir before caching with verbose remove to see what's going on * more inclusive shell code quality analysis * fixed more shellcheck issues * better shellcheck/shfmt debugging info
47 lines
873 B
YAML
47 lines
873 B
YAML
language: c
|
|
|
|
# sudo: false
|
|
sudo: true
|
|
dist: trusty
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
env:
|
|
global:
|
|
- "PATH=${HOME}/bin:${PATH}"
|
|
matrix:
|
|
- EMULATE_READER=1
|
|
|
|
cache:
|
|
apt: true
|
|
directories:
|
|
- "${HOME}/bin"
|
|
# compiled luarocks binaries
|
|
- "${TRAVIS_BUILD_DIR}/install"
|
|
# base build
|
|
- "${TRAVIS_BUILD_DIR}/base"
|
|
- "${HOME}/.ccache"
|
|
- "${HOME}/.luarocks"
|
|
before_cache:
|
|
# don't quote like you normally would or it won't expand
|
|
- rm -frv ${TRAVIS_BUILD_DIR}/base/build/*/cache/*
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
- libsdl1.2-dev
|
|
# luasec dependencies
|
|
- libssl1.0.0
|
|
- nasm
|
|
# OpenSSL likes this (package contains makedepend)
|
|
- xutils-dev
|
|
|
|
before_install: .ci/before_install.sh
|
|
install: .ci/install.sh
|
|
script: .ci/script.sh
|
|
after_success: .ci/after_success.sh
|