You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2019/06/26 19:39:24 UTC

[arrow] branch master updated: ARROW-5738: [Crossbow][Conda] OSX package builds are failing with missing intrinsics

This is an automated email from the ASF dual-hosted git repository.

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new eb57fff  ARROW-5738: [Crossbow][Conda] OSX package builds are failing with missing intrinsics
eb57fff is described below

commit eb57fff1e512bf5361ebe396661f510256c72563
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Wed Jun 26 14:39:13 2019 -0500

    ARROW-5738: [Crossbow][Conda] OSX package builds are failing with missing intrinsics
    
    Temporary solution is to pin conda to version 4.6
    
    Author: Krisztián Szűcs <sz...@gmail.com>
    
    Closes #4705 from kszucs/pin-conda-osx and squashes the following commits:
    
    9501c1dd2 <Krisztián Szűcs> use conda
    20b8d93d1 <Krisztián Szűcs> activate conda env before deployment
    27eeed636 <Krisztián Szűcs> more verbose note about the pinning
    47dbdc985 <Krisztián Szűcs> pin conda version to 4.6
---
 dev/tasks/conda-recipes/azure.osx.yml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev/tasks/conda-recipes/azure.osx.yml b/dev/tasks/conda-recipes/azure.osx.yml
index 5f5c8d0..7ff3570 100755
--- a/dev/tasks/conda-recipes/azure.osx.yml
+++ b/dev/tasks/conda-recipes/azure.osx.yml
@@ -40,6 +40,11 @@ jobs:
       export CI=azure
       source run_conda_forge_build_setup
       conda update --yes --quiet --override-channels -c conda-forge -c defaults --all
+      # ARROW-5738: OSX package builds are failing with missing intrinsics
+      #             Conda 4.7 has introduced a new format, probably broken
+      #             packages cause the error, so using a temporary solution:
+      #             pin `conda` to 4.6.
+      conda install --yes conda=4.6
     displayName: Configure conda and conda-build
     workingDirectory: arrow/dev/tasks/conda-recipes
     env: {
@@ -72,7 +77,8 @@ jobs:
   # The tag upload took 43 minutes because of this scan, so use an alternative
   # upload script.
   - script: |
-      python -m pip install github3-py click
+      source activate base
+      conda install -c conda-forge -y github3.py click
       python upload-assets.py \
         --sha {{ task.branch }} \
         --tag {{ task.tag }} \