You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2022/05/04 13:00:24 UTC

[arrow] branch master updated: ARROW-16455: [CI][Packaging] Add linux-ppc64le to the list of platforms to clean on conda

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

apitrou 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 1808494f86 ARROW-16455: [CI][Packaging] Add linux-ppc64le to the list of platforms to clean on conda
1808494f86 is described below

commit 1808494f86e540347dc3940e6e57986806413001
Author: Raúl Cumplido <ra...@gmail.com>
AuthorDate: Wed May 4 15:00:16 2022 +0200

    ARROW-16455: [CI][Packaging] Add linux-ppc64le to the list of platforms to clean on conda
    
    This PR aims to fix the issue:
    ```
    "[ERROR] ('Storage requirements exceeded (3221225472 bytes). Payment is required to add a file. Please go to https://anaconda.org/binstar.settings/billing to update your plan', 402)"
    ```
    
    Closes #13066 from raulcd/ARROW-16455
    
    Authored-by: Raúl Cumplido <ra...@gmail.com>
    Signed-off-by: Antoine Pitrou <an...@python.org>
---
 dev/tasks/conda-recipes/clean.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev/tasks/conda-recipes/clean.py b/dev/tasks/conda-recipes/clean.py
index 6a916b36ae..89874e0521 100644
--- a/dev/tasks/conda-recipes/clean.py
+++ b/dev/tasks/conda-recipes/clean.py
@@ -14,6 +14,7 @@ DELETE_BEFORE = pd.Timestamp.now() - pd.Timedelta(days=30)
 PLATFORMS = [
     "linux-64",
     "linux-aarch64",
+    "linux-ppc64le",
     "osx-64",
     "osx-arm64",
     "win-64",