Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] fix CUDA 11.8 builds (fixes #6466) #6465

Merged
merged 25 commits into from
May 27, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
even more cleanup
  • Loading branch information
jameslamb committed May 26, 2024
commit b2969d5649de02f4110db4b981265c7b3ee71af9
4 changes: 3 additions & 1 deletion .github/workflows/cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ jobs:
steps:
- name: clean up build dir on host
run: |
rm -rf ${HOME}/actions-runner/_work/LightGBM
rm -rf "${HOME}/actions-runner/_work/LightGBM"
rm -rf "${HOME}/conda"
test:
name: ${{ matrix.task }} ${{ matrix.cuda_version }} ${{ matrix.method }} (linux, ${{ matrix.compiler }}, Python ${{ matrix.python_version }})
runs-on: [self-hosted, linux]
Expand Down Expand Up @@ -110,6 +111,7 @@ jobs:
- name: (pre-build) Clean up build dir
run: |
rm -rf "${BUILD_DIRECTORY}"
rm -rf "${HOME}/conda"
- name: Install latest git
run: |
apt-get update
Expand Down
Loading