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 <[email protected]>
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 <[email protected]>
Signed-off-by: Antoine Pitrou <[email protected]>
---
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",