Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif committed Jun 18, 2024
1 parent d4454e6 commit d64ef8d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 41 deletions.
36 changes: 10 additions & 26 deletions .github/workflows/scheduled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,37 +36,21 @@ jobs:
strategy:
matrix:
image:
- distro_tag: '4.4.0'
bioc: '3.19'
distro: rstudio-local
origin: rocker
- distro_tag: '4.4.0'
bioc: '3.19'
distro: rstudio
origin: rocker
# - distro_tag: '4.4.0'
# bioc: '3.19'
# distro: rstudio-local
# origin: rocker
# - distro_tag: '4.4.0'
# bioc: '3.19'
# distro: rstudio
# origin: rocker
- distro_tag: 'latest'
bioc: 'devel'
distro: debian-clang-devel
distro: gcc13
origin: rhub
- distro_tag: 'latest'
bioc: 'devel'
distro: debian-gcc-devel
origin: rhub
- distro_tag: 'latest'
bioc: 'devel'
distro: fedora-clang-devel
origin: rhub
- distro_tag: 'latest'
bioc: 'devel'
distro: fedora-gcc-devel
origin: rhub
- distro_tag: 'latest'
bioc: '3.19'
distro: debian-gcc-patched
origin: rhub
- distro_tag: 'latest'
bioc: '3.19'
distro: debian-gcc-release
distro: gcc14
origin: rhub

# Trigger steps
Expand Down
30 changes: 15 additions & 15 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ COPY --chmod=0755 [\
RUN ./install_sysdeps.sh ${DISTRIBUTION}

# Install R packages
RUN ./install_cran_pkgs.R ${DISTRIBUTION} && \
./install_bioc.R ${BIOC_VERSION} && \
./install_bioc_pkgs.R ${DISTRIBUTION} && \
./install_gh_pkgs.R ${DISTRIBUTION} && \
./install_other_pkgs.R ${DISTRIBUTION} && \
./install_pip_pkgs.py ${DISTRIBUTION} && \
./test_installations.sh && \
rm -f install_sysdeps.sh \
install_cran_pkgs.R \
install_bioc.R \
install_bioc_pkgs.R \
install_gh_pkgs.R \
install_other_pkgs.R \
install_pip_pkgs.py \
test_installations.sh
RUN ./install_cran_pkgs.R ${DISTRIBUTION}
RUN ./install_bioc.R ${BIOC_VERSION}
RUN ./install_bioc_pkgs.R ${DISTRIBUTION}
RUN ./install_gh_pkgs.R ${DISTRIBUTION}
RUN ./install_other_pkgs.R ${DISTRIBUTION}
RUN ./install_pip_pkgs.py ${DISTRIBUTION}
# ./test_installations.sh && \
# rm -f install_sysdeps.sh \
# install_cran_pkgs.R \
# install_bioc.R \
# install_bioc_pkgs.R \
# install_gh_pkgs.R \
# install_other_pkgs.R \
# install_pip_pkgs.py \
# test_installations.sh

# Run RStudio
CMD ["/init"]

0 comments on commit d64ef8d

Please sign in to comment.