From 0d690c135fc7d7001283836e9b6fe98ccf063649 Mon Sep 17 00:00:00 2001 From: Darwin Darakananda Date: Mon, 8 May 2017 08:48:37 -0700 Subject: [PATCH 1/5] Fix broken wkhtmltox dependencies --- test/install_wkhtmltoimage.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/install_wkhtmltoimage.sh b/test/install_wkhtmltoimage.sh index b265d183..438adc76 100755 --- a/test/install_wkhtmltoimage.sh +++ b/test/install_wkhtmltoimage.sh @@ -7,7 +7,8 @@ sudo apt-get -qq update sudo apt-get install -y xfonts-75dpi wget http://download.gna.org/wkhtmltopdf/0.12/0.12.2/wkhtmltox-0.12.2_linux-trusty-amd64.deb -sudo dpkg -i wkhtmltox-0.12.2_linux-trusty-amd64.deb +sudo dpkg -i wkhtmltox-0.12.2_linux-trusty-amd64.deb || true +sudo apt-get -f install wkhtmltoimage http://www.google.com test.png ls From 0a094f2c77a6177a75100a966ea403351236a4d3 Mon Sep 17 00:00:00 2001 From: Darwin Darakananda Date: Mon, 8 May 2017 09:02:06 -0700 Subject: [PATCH 2/5] Add Julia 0.6 to Travis builds --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 1253ee9a..4005518c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,8 @@ os: # - osx julia: - 0.5 + - 0.6 + matrix: allow_failures: - julia: nightly From 6c8fa7795da3199e20836903e3d463999e6ac119 Mon Sep 17 00:00:00 2001 From: Darwin Darakananda Date: Thu, 11 May 2017 13:57:56 -0700 Subject: [PATCH 3/5] Use tagged version of `PlotUtils` --- test/travis_commands.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/test/travis_commands.jl b/test/travis_commands.jl index d0ff84bd..bb2b16e4 100644 --- a/test/travis_commands.jl +++ b/test/travis_commands.jl @@ -9,7 +9,6 @@ Pkg.clone("https://github.com/JuliaPlots/PlotReferenceImages.jl.git") # Pkg.clone("https://github.com/JuliaStats/KernelDensity.jl.git") Pkg.clone("StatPlots") -Pkg.checkout("PlotUtils") # Pkg.clone("https://github.com/JunoLab/Blink.jl.git") # Pkg.build("Blink") From 3cade3826d9a555e8f620fbb726116502e5247e4 Mon Sep 17 00:00:00 2001 From: Darwin Darakananda Date: Thu, 11 May 2017 14:34:26 -0700 Subject: [PATCH 4/5] turn `dpkg` dependency errors into warnings --- test/install_wkhtmltoimage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/install_wkhtmltoimage.sh b/test/install_wkhtmltoimage.sh index 438adc76..4b2eb03d 100755 --- a/test/install_wkhtmltoimage.sh +++ b/test/install_wkhtmltoimage.sh @@ -7,7 +7,7 @@ sudo apt-get -qq update sudo apt-get install -y xfonts-75dpi wget http://download.gna.org/wkhtmltopdf/0.12/0.12.2/wkhtmltox-0.12.2_linux-trusty-amd64.deb -sudo dpkg -i wkhtmltox-0.12.2_linux-trusty-amd64.deb || true +sudo dpkg -i --depends wkhtmltox-0.12.2_linux-trusty-amd64.deb sudo apt-get -f install wkhtmltoimage http://www.google.com test.png ls From 6291d366598c595db5e8880b1275bb83f990b30c Mon Sep 17 00:00:00 2001 From: Darwin Darakananda Date: Fri, 12 May 2017 00:18:58 -0700 Subject: [PATCH 5/5] Fix flag typo --- test/install_wkhtmltoimage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/install_wkhtmltoimage.sh b/test/install_wkhtmltoimage.sh index 4b2eb03d..2d7c94e1 100755 --- a/test/install_wkhtmltoimage.sh +++ b/test/install_wkhtmltoimage.sh @@ -7,7 +7,7 @@ sudo apt-get -qq update sudo apt-get install -y xfonts-75dpi wget http://download.gna.org/wkhtmltopdf/0.12/0.12.2/wkhtmltox-0.12.2_linux-trusty-amd64.deb -sudo dpkg -i --depends wkhtmltox-0.12.2_linux-trusty-amd64.deb +sudo dpkg -i --force-depends wkhtmltox-0.12.2_linux-trusty-amd64.deb sudo apt-get -f install wkhtmltoimage http://www.google.com test.png ls