temporarily removes Pacman support until BinDeps is released with it
This commit is contained in:
parent
f75de3299f
commit
2a715fc2c7
2 changed files with 2 additions and 3 deletions
|
@ -14,7 +14,6 @@ before_install:
|
||||||
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
||||||
script:
|
script:
|
||||||
- julia -e 'Pkg.init()'
|
- julia -e 'Pkg.init()'
|
||||||
- julia -e 'Pkg.add("BinDeps"); Pkg.checkout("BinDeps")' # latest master needed for Pacman support
|
|
||||||
- julia -e 'Pkg.clone(pwd()); Pkg.build("AudioIO")'
|
- julia -e 'Pkg.clone(pwd()); Pkg.build("AudioIO")'
|
||||||
- julia -e 'Pkg.test("AudioIO", coverage=true)'
|
- julia -e 'Pkg.test("AudioIO", coverage=true)'
|
||||||
after_success:
|
after_success:
|
||||||
|
|
4
deps/build.jl
vendored
4
deps/build.jl
vendored
|
@ -10,8 +10,8 @@ libsndfile = library_dependency("libsndfile")
|
||||||
# TODO: add other providers with correct names
|
# TODO: add other providers with correct names
|
||||||
provides(AptGet, {"portaudio19-dev" => libportaudio})
|
provides(AptGet, {"portaudio19-dev" => libportaudio})
|
||||||
provides(AptGet, {"libsndfile1-dev" => libsndfile})
|
provides(AptGet, {"libsndfile1-dev" => libsndfile})
|
||||||
provides(Pacman, {"portaudio" => libportaudio})
|
#provides(Pacman, {"portaudio" => libportaudio})
|
||||||
provides(Pacman, {"libsndfile" => libsndfile})
|
#provides(Pacman, {"libsndfile" => libsndfile})
|
||||||
|
|
||||||
|
|
||||||
@osx_only begin
|
@osx_only begin
|
||||||
|
|
Loading…
Add table
Reference in a new issue