now checking out SampledSignals on CI, too
This commit is contained in:
parent
44339ff755
commit
1d16bdecba
3 changed files with 3 additions and 3 deletions
|
@ -13,4 +13,4 @@ notifications:
|
||||||
script:
|
script:
|
||||||
# we can't actually run on travis, so just make sure it's installable
|
# we can't actually run on travis, so just make sure it's installable
|
||||||
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
||||||
- julia -e 'Pkg.clone(pwd()); Pkg.build("PortAudio"); Pkg.checkout("Compat"); Pkg.checkout("RingBuffers"); using PortAudio'
|
- julia -e 'Pkg.clone(pwd()); Pkg.build("PortAudio"); Pkg.checkout("Compat"); Pkg.checkout("RingBuffers"); Pkg.checkout("SampledSignals"); using PortAudio'
|
||||||
|
|
|
@ -3,7 +3,7 @@ PortAudio.jl
|
||||||
|
|
||||||
PortAudio.jl is a wrapper for [libportaudio](http://www.portaudio.com/), which gives cross-platform access to audio devices. It is compatible with the types defined in [SampledSignals.jl](https://github.com/JuliaAudio/SampledSignals.jl). It provides a `PortAudioStream` type, which can be read from and written to.
|
PortAudio.jl is a wrapper for [libportaudio](http://www.portaudio.com/), which gives cross-platform access to audio devices. It is compatible with the types defined in [SampledSignals.jl](https://github.com/JuliaAudio/SampledSignals.jl). It provides a `PortAudioStream` type, which can be read from and written to.
|
||||||
|
|
||||||
#### NOTE: This package currently requires the master branch of the `Compat` and `RingBuffers` packages. Use `Pkg.checkout` to checkout the master.
|
#### NOTE: This package currently requires the master branch of the `Compat`, `SampledSignals` and `RingBuffers` packages. Use `Pkg.checkout` to checkout the master.
|
||||||
|
|
||||||
## Opening a stream
|
## Opening a stream
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ build_script:
|
||||||
# Need to convert from shallow to complete for Pkg.clone to work
|
# Need to convert from shallow to complete for Pkg.clone to work
|
||||||
- IF EXIST .git\shallow (git fetch --unshallow)
|
- IF EXIST .git\shallow (git fetch --unshallow)
|
||||||
- C:\projects\julia\bin\julia -e "versioninfo();
|
- C:\projects\julia\bin\julia -e "versioninfo();
|
||||||
Pkg.clone(pwd(), \"PortAudio\"); Pkg.build(\"PortAudio\"); Pkg.checkout(\"Compat\"); Pkg.checkout(\"RingBuffers\")"
|
Pkg.clone(pwd(), \"PortAudio\"); Pkg.build(\"PortAudio\"); Pkg.checkout(\"Compat\"); Pkg.checkout(\"RingBuffers\"); Pkg.checkout(\"SampledSignals\")"
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
# can't actually run the test, so just make sure it's installable
|
# can't actually run the test, so just make sure it's installable
|
||||||
|
|
Loading…
Reference in a new issue