-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy path.travis.yml
53 lines (45 loc) · 1.9 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
language: c
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: "B/r1udhVClBST1UK5YVV+Uwg0fG4kIkjyd6AA8wYlFBhq+0lWKvJGghJlif6bfJcaSWWKizYM8uzzFvRK4PhYweWX7e0qu2RFPhW+8rISe4w7mbMpcR6ohgULzA7g5b0jX4hceOoAMopL/nNOxtmXenQOCzBk5/XoZ3L5Q2EyfNZax27uvvK3GJzrGiZ/iTI4DusMOSjbEkkiPKZC7fJ1y9WYN5aOHWEP1mczU2kFHsQ8Hw4xGIovMzGYwoWk2/5XDg37Y+vA29P6TKH2bEU9Yi5FtEraG9f4wAq49nwEqtZeeFcfG+4vS3S7k1+DlOX44422hF5Gbh1qMlVYutGF2rkfbUKAdYHO8aKJxQwbvV+mEglmEeIlnzEvePaMvXt7mwgEL6utGJkB+wyNUI73rU8ONH2OdBK88LtNOBYcDlbVAuTDN5NNdwBHyKH3p4KUHN2gYo3R65l4GVpIK3jPWG+H/yWcR7ZabwcbrMTh7ObUM1uhCpMI1wq7CMx5glml3m0dtMJWxgjalPWkt0Cdt+YcL9mDud9TdTKLK4q7Ss9rAS5jidOCk7ryOw7/1FVYxWefiiRWF7zifSw3PbUscQ6q4XwSucZLNIxQ6xLq75vNey5yGQPyGipl2bH0/ShAlASfxlbdZx+eyHAj24dubsuU3jYEFaOWJ2DhpSZ2Mw="
before_install:
- echo -n | openssl s_client -connect https://scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
# The Xenial Build Environment
# https://docs.travis-ci.com/user/reference/xenial/
# The macOS Build Environment
# https://docs.travis-ci.com/user/reference/osx/
matrix:
fast_finish: false
include:
- os: linux
dist: xenial
compiler: gcc
addons:
apt:
packages:
- libusb-1.0-0-dev
coverity_scan:
project:
name: homewsn/whsniff
description: Build submitted via Travis CI
notification_email: [email protected]
build_command_prepend: cov-configure --comptype gcc --compiler /usr/bin/gcc
build_command: make
branch_pattern: master
- os: linux
dist: xenial
compiler: clang
addons:
apt:
packages:
- libusb-1.0-0-dev
- os: osx
osx_image: xcode9.4
compiler: clang
addons:
homebrew:
packages:
- libusb
script: make