Skip to content

Commit

Permalink
actually commit the script...
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Graff committed Aug 31, 2017
1 parent c7b6106 commit 60ae173
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions gradle/start-rserve.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/sh

#
# This script is intended to start Rserve on travis-ci, which currently uses
# Ubuntu trusty. The r-cran-rserve package has a bug where it cannot be used
# directly, but we can start it in other ways, which we will do below.
#
# See https://bugs.launchpad.net/ubuntu/+source/rserve/+bug/1325325 for
# details on the bug.
#

R --no-save --no-restore --quiet << __EOF__
library(Rserve)
Rserve(args="--RS-conf gradle/Rserve.conf --quiet --no-restore --no-save")
q()
__EOF__

0 comments on commit 60ae173

Please sign in to comment.