Skip to content

Commit

Permalink
Merge branch 'deephaven:main' into docs-ci-version-improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub authored Nov 21, 2023
2 parents 5fcca2f + 18c6e75 commit 26caa91
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions R/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ def rClientSite = Docker.registerDockerTask(project, 'rClientSite') {
from(layout.projectDirectory) {
include 'r-site.sh'
include 'rdeephaven/man/**'
include 'rdeephaven/pkgdown/**'
}
}
copyOut {
Expand All @@ -173,6 +174,7 @@ def rClientSite = Docker.registerDockerTask(project, 'rClientSite') {
from('deephaven/r-client-doc:local-build')
// We need the contents of 'man' to build the docsite
copyFile('rdeephaven/man/**', "${prefix}/src/rdeephaven/man/")
copyFile('rdeephaven/pkgdown/**', "${prefix}/src/rdeephaven/pkgdown/")
runCommand("mkdir -p ${prefix}/src/rdeephaven/docs")
runCommand('''echo "status = tryCatch(" \
" {" \
Expand Down
2 changes: 1 addition & 1 deletion R/r-site.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ R --no-save --no-restore <<EOF
library('pkgdown')
status = tryCatch(
{
pkgdown::build_site()
pkgdown::build_site(preview=FALSE)
0
},
error=function(e) 1
Expand Down
6 changes: 3 additions & 3 deletions web/client-ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ FROM deephaven/node:local-build
WORKDIR /usr/src/app

# Most of the time, these versions are the same, except in cases where a patch only affects one of the packages
ARG WEB_VERSION=0.54.0
ARG GRID_VERSION=0.54.0
ARG CHART_VERSION=0.54.0
ARG WEB_VERSION=0.55.0
ARG GRID_VERSION=0.55.0
ARG CHART_VERSION=0.55.0

# Pull in the published code-studio package from npmjs and extract is
RUN set -eux; \
Expand Down

0 comments on commit 26caa91

Please sign in to comment.