forked from h2oai/wave
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add R build into release job (h2oai#1531)
- Loading branch information
Showing
8 changed files
with
71 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: h2owave | ||
Title: R Driver for H2O Wave Realtime Apps Framework | ||
Version: 0.18.2 | ||
Version: 0.22.0 | ||
Date: 2022-05-03 | ||
Authors@R: c( | ||
person(given = "Ashrith", | ||
|
@@ -10,7 +10,11 @@ Authors@R: c( | |
person(given = "Prithvi", | ||
family = "Prabhu", | ||
role = c("aut"), | ||
email = "[email protected]") | ||
email = "[email protected]"), | ||
person(given = "Martin", | ||
family = "Turoci", | ||
role = c("ctb"), | ||
email = "[email protected]") | ||
) | ||
Description: H2O Wave is a lightweight software stack for programming interactive web applications entirely in R (no HTML/Javascript/CSS) required. It is designed to make it fast, fun and easy to build low-latency, realtime, collaborative, web-based applications. It ships batteries-included with a suite of form and data visualization components for rapidly prototyping analytical and decision-support applications. Wave’s components work in conjunction with the Wave relay server that facilitates realtime state synchronization between R and web browsers. | ||
License: Apache License (>= 2.0) | ||
|
@@ -27,4 +31,4 @@ Depends: | |
httpuv, | ||
R6(>= 2.0) | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.1.2 | ||
RoxygenNote: 7.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
#base rdriver image | ||
FROM opsh2oai/rdriver:latest | ||
FROM r-base:latest | ||
|
||
# clone our library, note that this might be cached so run docker with --no-cache if you have done | ||
# changes to repo | ||
RUN git clone --depth 1 https://github.com/h2oai/wave | ||
COPY ../ /wave | ||
|
||
# step 6! clone our library, note that this might be cached so run docker with --no-cache if you have done | ||
# changes to repo | ||
RUN git clone --depth 1 https://github.com/h2oai/wave | ||
WORKDIR /wave | ||
|
||
RUN apt-get update -q && apt-get -y install libcurl4-openssl-dev \ | ||
libxml2-dev \ | ||
wget \ | ||
curl \ | ||
git \ | ||
gdebi-core \ | ||
r-base-dev \ | ||
r-cran-openssl \ | ||
r-cran-xml2 \ | ||
r-cran-curl \ | ||
r-cran-httr \ | ||
r-cran-httpuv | ||
|
||
# mek me a package, please! | ||
# if this runs fine then the dependencies have been installed and package will be ready in wave directory in docker | ||
RUN cd wave/r/ && make package | ||
RUN make build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters