Skip to content

Commit 9519cab

Browse files
committed
debug
1 parent d101fcc commit 9519cab

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,26 @@ jobs:
9797
uses: actions/setup-python@v2
9898
with:
9999
python-version: 3.8
100+
101+
- name: Install kaleido
102+
if: matrix.config.visual_tests == true
103+
run: |
104+
Rscript -e "reticulate::py_config()"
105+
Rscript -e "reticulate::conda_list()"
106+
shell: bash
100107

101-
# https://github.com/nextstrain/conda/issues/5
102108
- name: Install kaleido
103109
if: matrix.config.visual_tests == true
104110
run: |
105-
sudo chown -R $UID $CONDA
111+
echo $CONDA
112+
sudo chown -R $UID $CONDA # https://github.com/nextstrain/conda/issues/5
106113
Rscript -e "reticulate::install_miniconda()"
107114
Rscript -e "reticulate::conda_install('r-reticulate', 'python-kaleido')"
108115
Rscript -e "reticulate::use_miniconda('r-reticulate')"
116+
117+
- name: Install kaleido
118+
if: matrix.config.visual_tests == true
119+
run: |
109120
Rscript -e "reticulate::py_config()"
110121
Rscript -e "reticulate::conda_list()"
111122
shell: bash

0 commit comments

Comments
 (0)