From 44339ff75536a06ea0811e850f3d42e7e9c39851 Mon Sep 17 00:00:00 2001 From: Spencer Russell Date: Tue, 9 Aug 2016 00:02:49 -0400 Subject: [PATCH] now checking out RingBuffers on CI, too --- .travis.yml | 2 +- README.md | 2 +- appveyor.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 09e7d87..b9ec483 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,4 @@ notifications: script: # we can't actually run on travis, so just make sure it's installable - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - - julia -e 'Pkg.clone(pwd()); Pkg.build("PortAudio"); Pkg.checkout("Compat"); using PortAudio' + - julia -e 'Pkg.clone(pwd()); Pkg.build("PortAudio"); Pkg.checkout("Compat"); Pkg.checkout("RingBuffers"); using PortAudio' diff --git a/README.md b/README.md index 6f05c3b..0057029 100644 --- a/README.md +++ b/README.md @@ -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. -#### NOTE: This package currently requires the master branch of the `Compat` package. +#### NOTE: This package currently requires the master branch of the `Compat` and `RingBuffers` packages. Use `Pkg.checkout` to checkout the master. ## Opening a stream diff --git a/appveyor.yml b/appveyor.yml index 887240b..9db20fd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -28,7 +28,7 @@ build_script: # Need to convert from shallow to complete for Pkg.clone to work - IF EXIST .git\shallow (git fetch --unshallow) - C:\projects\julia\bin\julia -e "versioninfo(); - Pkg.clone(pwd(), \"PortAudio\"); Pkg.build(\"PortAudio\"); Pkg.checkout(\"Compat\")" + Pkg.clone(pwd(), \"PortAudio\"); Pkg.build(\"PortAudio\"); Pkg.checkout(\"Compat\"); Pkg.checkout(\"RingBuffers\")" test_script: # can't actually run the test, so just make sure it's installable