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 8dba048 commit 27a35b5Copy full SHA for 27a35b5
.github/workflows/windows.yml
@@ -68,6 +68,7 @@ jobs:
68
69
# Windows CUDA builds use USE_NCCL=off due to compilation errors.
70
- name: Build Debug
71
+ id: build-debug
72
uses: lukka/run-cmake@v3
73
with:
74
buildDirectory: ${{ github.workspace }}/build/Debug
@@ -93,6 +94,11 @@ jobs:
93
94
# able to find sometimes.
95
if: matrix.gpu == true
96
97
+ - name: Cleanup Debug
98
+ if: steps.build-debug.conclusion == 'success'
99
+ working-directory: ${{ github.workspace }}/build/Debug
100
+ run: cmake --build . --target clean
101
+
102
# Windows CUDA builds use USE_NCCL=off due to compilation errors
103
- name: Build Release
104
0 commit comments