Unverified Commit 762d822e authored by Peter Eastman's avatar Peter Eastman Committed by GitHub
Browse files

Prevent running out of disk space in OpenCL CI build (#5164)

* Prevent running out of disk space in OpenCL CI build

* Removed incorrect lines

* Delete more

* Fixed incorrect paths

* Removed some paths
parent adfd84c2
...@@ -192,6 +192,12 @@ jobs: ...@@ -192,6 +192,12 @@ jobs:
miniforge-variant: Miniforge3 miniforge-variant: Miniforge3
use-mamba: true use-mamba: true
# See https://github.com/kou/arrow/blob/main/ci/scripts/util_free_space.sh. We can delete more if we need to.
- name: "Free disk space"
if: matrix.OPENCL == true && startsWith(matrix.os, 'ubuntu')
run: |
rm -rf /opt/hostedtoolcache/*
- name: "Install CUDA on Ubuntu (if needed)" - name: "Install CUDA on Ubuntu (if needed)"
if: matrix.cuda-version != '' && startsWith(matrix.os, 'ubuntu') if: matrix.cuda-version != '' && startsWith(matrix.os, 'ubuntu')
env: env:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment