We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef776da commit d05c750Copy full SHA for d05c750
.github/actions/setup-conda/action.yml
@@ -16,11 +16,13 @@ runs:
16
condarc-file: ci/.condarc
17
cache-environment: true
18
cache-downloads: true
19
- # keep post step simple to avoid JSON parsing problems
20
- post-cleanup: environment
+ # FIX: Set this to 'none'.
+ # 'environment' mode tries to parse JSON to delete packages, which causes the crash.
21
+ # GitHub runners are destroyed after the job, so cleanup is not required.
22
+ post-cleanup: 'none'
23
24
- name: Uninstall pyarrow (optional)
25
if: ${{ env.REMOVE_PYARROW == '1' }}
26
shell: bash -el {0}
27
run: |
- micromamba remove -y -n test pyarrow
28
+ micromamba remove -y -n test pyarrow
0 commit comments