mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-10 17:18:35 +08:00
21 lines
329 B
YAML
21 lines
329 B
YAML
# .travis.yml for HSTR
|
|
|
|
language: c
|
|
|
|
os: linux
|
|
|
|
compiler: gcc
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: change
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq autotools-dev libreadline-dev libncursesw5-dev
|
|
- aclocal
|
|
- automake --force-missing --add-missing
|
|
- autoconf
|
|
|
|
# eof
|