You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/02/10 21:51:34 UTC

[GitHub] [arrow] nealrichardson commented on a change in pull request #12395: ARROW-15653: [R][CI] Fix tests of bundled cpp source

nealrichardson commented on a change in pull request #12395:
URL: https://github.com/apache/arrow/pull/12395#discussion_r804137143



##########
File path: ci/scripts/r_docker_configure.sh
##########
@@ -30,6 +30,17 @@ fi
 # Ensure parallel compilation of C/C++ code
 echo "MAKEFLAGS=-j$(${R_BIN} -s -e 'cat(parallel::detectCores())')" >> $(R RHOME)/etc/Renviron.site
 
+# Figure out what package manager we have
+if [ "`which dnf`" ]; then
+  PACKAGE_MANAGER=dnf
+elif [ "`which yum`" ]; then
+  PACKAGE_MANAGER=yum
+elif [ "`which zypper`" ]; then
+  PACKAGE_MANAGER=zypper
+else
+  PACKAGE_MANAGER=apt-get

Review comment:
       yeah probably so




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org