We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c8372b commit f6e56d4Copy full SHA for f6e56d4
dev/github-actions/install-R.sh
@@ -1,5 +1,6 @@
1
#!/bin/zsh
2
set -eu
3
+exec 2>&1
4
5
# INSTALL R SH
6
# and RInside
@@ -24,12 +25,23 @@ case $MATRIX_OS {
24
25
PS4="
26
+ "
27
28
+set -x
29
+echo CONDA_EXE $CONDA_EXE
30
+CONDA_HOME=$(dirname $(dirname $CONDA_EXE))
31
+CONDA_BIN_DIR=$CONDA_HOME/bin
32
+set +x
33
+echo source $CONDA_BIN_DIR/activate
34
+source $CONDA_BIN_DIR/activate
35
36
+
37
+which python conda
38
39
() {
40
set -x
41
conda install --yes --quiet -c conda-forge -c swift-t $PKG
42
rehash
43
echo $PATH
- which python
44
45
which Rscript
46
Rscript dev/conda/install-RInside.R
47
}
0 commit comments