File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ RUN apt-get update && \
1010 rm -rf /var/lib/apt/lists/* /tmp/library-scripts
1111
1212# ## install RStudio server
13- ARG RSTUDIO_VER="2023.12.1-402"
13+ # ## Stable version only available for amd64 architecture
14+ ARG RSTUDIO_VER="2025.05.1-513"
1415ARG RSTUDIO_URL="https://download2.rstudio.org/server/jammy/amd64"
1516RUN wget -q "${RSTUDIO_URL}/rstudio-server-${RSTUDIO_VER}-amd64.deb" && \
1617 apt-get install -yq --no-install-recommends ./rstudio*.deb && \
@@ -34,4 +35,4 @@ RUN echo 'options(repos=c(CRAN="https://cloud.r-project.org"))' > ~/.Rprofile &&
3435 R -q -e 'remotes::install_version("markdown", version="1.12")' && \
3536 R -q -e 'remotes::install_version("languageserver", version="0.3.16")' && \
3637 R -q -e 'remotes::install_version("httpgd", version="2.0.1")' && \
37- R -q -e 'remotes::install_github("ManuelHentschel/vscDebugger")'
38+ R -q -e 'remotes::install_github("ManuelHentschel/vscDebugger", ref="v0.5.2" )'
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ jobs:
1515 - config : 1-minimal
1616 command : uname -a
1717 platform : linux/amd64,linux/arm64
18- push : never
18+ push : always
1919 - config : 2-matlab
2020 command : matlab -h || true # matlab -h returns 1 causing action to fail
2121 platform : linux/amd64,linux/arm64
22- push : never
22+ push : always
2323 - config : 3-jupyter
2424 command : radian --version
2525 platform : linux/amd64 # RStudio Server does not support ARM architecture
You can’t perform that action at this time.
0 commit comments