mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
f75854cd31
* Update cmake * Update cmake, make Travis use it * Enable all tests in a single command : make check * Make cmake flawlessly run with Debian jessie cmake 3.0.2 * Make Travis use our own cmake 3.0.2 compiled version * Typo in preferred version * Be sure travis will have gettext
50 lines
1.1 KiB
YAML
50 lines
1.1 KiB
YAML
language: cpp
|
|
|
|
sudo: true
|
|
|
|
compiler:
|
|
- clang
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- coverity_scan
|
|
- travis
|
|
|
|
env:
|
|
global:
|
|
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
|
|
# via the "travis encrypt" command using the project repo's public key
|
|
- secure: "KuAAwjiIqkk4vqSX/M3ZZIvQs6edm+tV8IADiklTUYZIFyxu8FgZ6RbDdMD2sef5bNZA1OZhlcbeRtiKff5CfMtvzc607Lg3NUkpi+ShMynWgqS/e0uCMf9ogEJlUiZMxf4juBi7v6DyMl/WV6pAdJmdfHtzcj8GF2mgTfQjkO8="
|
|
|
|
before_script:
|
|
- sh ci/install-cmake.sh
|
|
- sudo modprobe fuse
|
|
- mkdir build
|
|
- cd build
|
|
- ../ci/cmake/bin/cmake --version
|
|
- ../ci/cmake/bin/cmake ..
|
|
|
|
script:
|
|
- if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then make && make check ; fi
|
|
|
|
addons:
|
|
coverity_scan:
|
|
project:
|
|
name: "vgough/encfs"
|
|
description: "Build submitted via Travis CI"
|
|
notification_email: vgough@pobox.com
|
|
build_command_prepend: "make clean"
|
|
build_command: "make -j 4"
|
|
branch_pattern: coverity_scan
|
|
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- attr
|
|
- clang
|
|
- fuse
|
|
- libfuse-dev
|
|
- gettext
|