Skip to content

Commit d7025de

Browse files
authored
Fix GPU wheel builds on release (#2034)
For the previous few releases the GPU wheel builds have failed to upload. The root cause of this issue was that an earlier CI stage was deleting on the locally cached docker images to free up space for installing CUDA and all the GPU build requirements in the test VM. Removing these docker images prevented the upstream action we run to publish the wheels from working as it relied on having a docker image available that couldn't be fetched from the default image repository. This commit fixes this issue for future releases by ensuring we don't delete the local docker cache in the GPU publish jobs. For the 0.13.2 releases this was manually applied and run to publish the wheels and this PR is applying the fix for future releases.
1 parent 08b07ce commit d7025de

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.github/workflows/deploy.yml

-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ jobs:
135135
remove-android: 'true'
136136
remove-haskell: 'true'
137137
remove-codeql: 'true'
138-
remove-docker-images: 'true'
139138
- uses: actions/checkout@v3
140139
- uses: actions/setup-python@v4
141140
name: Install Python
@@ -179,7 +178,6 @@ jobs:
179178
remove-android: 'true'
180179
remove-haskell: 'true'
181180
remove-codeql: 'true'
182-
remove-docker-images: 'true'
183181
- uses: actions/checkout@v3
184182
- uses: actions/setup-python@v4
185183
name: Install Python

0 commit comments

Comments
 (0)