From c02d6edc2a2ebf6b25d68d19e213dbcef20544b0 Mon Sep 17 00:00:00 2001 From: Karthik Ram Date: Tue, 12 Aug 2014 12:35:10 -0700 Subject: [PATCH 1/2] Added Windows CI with appveyor This should add windows CI in addition to what Travis provides. --- .Rbuildignore | 3 ++- appveyor.yml | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 appveyor.yml diff --git a/.Rbuildignore b/.Rbuildignore index c8deddae82..a2642a9be9 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -4,4 +4,5 @@ Makefile man-roxygen man-roxygen/^.*\.Rproj$ ^\.Rproj\.user$ -vignettes/margins.sty \ No newline at end of file +vignettes/margins.sty +appveyor.yml \ No newline at end of file diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000000..7793be9011 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,18 @@ +init: + ps: | + $ErrorActionPreference = "Stop" + Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1" + Import-Module '..\appveyor-tool.ps1' + +install: + ps: Bootstrap + +build_script: + - travis-tool.sh install_deps + +test_script: + - travis-tool.sh run_tests + +on_failure: + - travis-tool.sh dump_logs + From 3ed912a74ce6ff5c80e65c611764e054acc551ca Mon Sep 17 00:00:00 2001 From: Karthik Ram Date: Tue, 12 Aug 2014 12:37:02 -0700 Subject: [PATCH 2/2] added Windows build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6eaa4e4c3f..3da6f1623b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Build Status](https://travis-ci.org/ropensci/plotly.png?branch=master)](https://travis-ci.org/ropensci/plotly) +[![Build Status](https://travis-ci.org/ropensci/plotly.png?branch=master)](https://travis-ci.org/ropensci/plotly) [![Build status](https://ci.appveyor.com/api/projects/status/4m5gq5hbjqcgkpep)](https://ci.appveyor.com/project/karthik/plotly) plotly: Scientific Graphing Library ======