-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.travis.yml
47 lines (47 loc) · 1007 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
45
46
47
# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
# os:
# - linux
# - osx
notifications:
email: false
matrix:
include:
- julia: 0.4
os: linux
env:
- JACKD=1
addons:
apt:
packages:
- jackd1
- julia: 0.4
os: linux
env:
- JACKD=2
addons:
apt:
packages:
- jackd2
- julia: 0.5
os: linux
env:
- JACKD=1
addons:
apt:
packages:
- jackd1
- julia: 0.5
os: linux
env:
- JACKD=2
addons:
apt:
packages:
- jackd2
script:
- jackd -r -p24 -ddummy -r48000 -p2048 &
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'Pkg.clone(pwd()); Pkg.build("JACKAudio"); Pkg.test("JACKAudio"; coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("JACKAudio")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'