-
Notifications
You must be signed in to change notification settings - Fork 125
/
.travis.yml
44 lines (38 loc) · 815 Bytes
/
.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
language: c
os:
- linux
- osx
compiler:
- clang
- gcc
addons:
apt:
update: true
packages:
- libusb-1.0-0-dev
homebrew:
packages:
- libusb
update: true
script:
- make
# matrix:
# include:
# - os: linux
# dist: xenial
# sudo: required
# - os: osx
# osx_image: xcode6.4
#before_deploy:
# # Set up git user name and tag this commit
# - git config --local user.name "audiohacked"
# - git config --local user.email "[email protected]"
# - git tag "$(date +'%Y%m%d%H%M%S')-$(git log --format=%h -1)"
#deploy:
# provider: releases
# api_key:
# secure: YOUR_API_KEY_ENCRYPTED
# file: "FILE TO UPLOAD"
# skip_cleanup: true
# on:
# tags: true