2014-09-17 11:51:45 +08:00
|
|
|
# Travis CI integration
|
|
|
|
language: c
|
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
|
2014-09-15 02:00:58 +08:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
|
|
|
|
# via the "travis encrypt" command using the project repo's public key
|
2014-09-17 11:57:41 +08:00
|
|
|
- secure: "iFll6pD0lzVYVRUlbPBGOTB0xqoEsC0BeUdftfRQdnEssruWOEKtf3VH6gSNRu8QMPeTCNhl4fsWUJhnowZgoobi/XcsXxFv/oJQZ1sa7cQUXizeEYUmsDZxUiw/sNsWlUz6dBKPepQStYyOK/tJLQ1GfLi1ESTPt6anokMVDbk="
|
2014-09-15 02:00:58 +08:00
|
|
|
|
|
|
|
addons:
|
|
|
|
coverity_scan:
|
|
|
|
project:
|
|
|
|
name: "troglobit/editline"
|
|
|
|
description: "Minix editline"
|
|
|
|
notification_email: troglobit@gmail.com
|
|
|
|
build_command_prepend: "./configure --enable-sigstop --enable-terminal-bell"
|
|
|
|
build_command: "make -j5"
|
|
|
|
branch_pattern: master
|
|
|
|
|
|
|
|
script: ./configure --enable-sigstop --enable-terminal-bell && make -j5
|