Skip to content

Commit

Permalink
test makevars v2
Browse files Browse the repository at this point in the history
  • Loading branch information
albarema authored Dec 20, 2024
1 parent 9bb234a commit 1c10515
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/render_page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,10 @@ jobs:

- name: installations
run: |
echo "CXX=g++-11" >> $(Rscript -e 'cat(renv::paths$library())')/Makevars && \
echo "CXXFLAGS=-std=c++14" >> $(Rscript -e 'cat(renv::paths$library())')/Makevars && \
RENV_LIBRARY_PATH=$(Rscript -e 'cat(renv::paths$library())')
# Ensure renv Makevars exists and add the flags
echo "CXX=g++-11" >> "$RENV_LIBRARY_PATH/Makevars"
echo "CXXFLAGS=-std=c++14" >> "$RENV_LIBRARY_PATH/Makevars"
R -e 'install.packages(c("devtools","BiocManager", "tidyverse", "RColorBrewer", "pheatmap", "ggrepel", "cowplot"))'
R -e 'BiocManager::install("fgsea")
R -e 'devtools::install_github("stephenturner/annotables")'
Expand Down

0 comments on commit 1c10515

Please sign in to comment.