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 2021/01/25 15:13:42 UTC

[GitHub] [arrow] xhochy commented on a change in pull request #9315: ARROW-11372: [Release] Support RC verification on macOS-ARM64

xhochy commented on a change in pull request #9315:
URL: https://github.com/apache/arrow/pull/9315#discussion_r563799499



##########
File path: dev/release/verify-release-candidate.sh
##########
@@ -215,7 +215,11 @@ setup_tempdir() {
 setup_miniconda() {
   # Setup short-lived miniconda for Python and integration tests
   if [ "$(uname)" == "Darwin" ]; then
-    MINICONDA_URL=https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
+    if [ "$(uname -m)" == "arm64" ]; then
+	MINICONDA_URL=https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-arm64.sh
+    else
+        MINICONDA_URL=https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh

Review comment:
       It doesn't really make a difference in the following steps, thus I would keep as-is.




----------------------------------------------------------------
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.

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